- Created package.json for managing workspaces (frontend and backend) - Added scripts for development, build, testing, and Docker operations - Implemented kill-dev-processes.sh script to terminate development processes gracefully
29 lines
801 B
JSON
29 lines
801 B
JSON
{
|
|
"typescript.preferences.includePackageJsonAutoImports": "auto",
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
"files.exclude": {
|
|
"**/node_modules": true,
|
|
"**/dist": true,
|
|
"**/.git": true,
|
|
"**/.DS_Store": true
|
|
},
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/dist": true
|
|
},
|
|
"typescript.updateImportsOnFileMove.enabled": "always",
|
|
"emmet.includeLanguages": {
|
|
"typescript": "typescriptreact"
|
|
},
|
|
"debug.allowBreakpointsEverywhere": true,
|
|
"debug.node.autoAttach": "on",
|
|
"terminal.integrated.enablePersistentSessions": false,
|
|
"terminal.integrated.confirmOnKill": "editor",
|
|
"task.autoDetect": "off",
|
|
"task.showDecorations": true
|
|
}
|