Handoff prep for moving development to VS Code: living progress tracker, recommended extensions, and example workspace settings.
20 lines
558 B
JSON
20 lines
558 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
"eslint.useFlatConfig": true,
|
|
"eslint.workingDirectories": [{ "mode": "auto" }],
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"typescript.enablePromptUseWorkspaceTsdk": true,
|
|
"files.eol": "\n",
|
|
"files.insertFinalNewline": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/.next": true,
|
|
"**/pnpm-lock.yaml": true
|
|
}
|
|
}
|