32 lines
977 B
JSON
32 lines
977 B
JSON
{
|
|
"djlint.showInstallError": false,
|
|
"typescript.preferences.includePackageJsonAutoImports": "on",
|
|
"typescript.suggest.autoImports": true,
|
|
"typescript.updateImportsOnFileMove.enabled": "always",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.organizeImports": "explicit"
|
|
},
|
|
"debug.javascript.autoAttachFilter": "disabled",
|
|
"debug.javascript.terminalOptions": {
|
|
"skipFiles": [
|
|
"<node_internals>/**",
|
|
"${workspaceFolder}/node_modules/**"
|
|
]
|
|
},
|
|
"files.associations": {
|
|
"*.ts": "typescript",
|
|
"*.html": "html"
|
|
},
|
|
"emmet.includeLanguages": {
|
|
"typescript": "html"
|
|
},
|
|
"debug.allowBreakpointsEverywhere": true,
|
|
"debug.javascript.breakOnConditionalError": false,
|
|
|
|
"debug.javascript.codelens.npmScripts": "never",
|
|
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
|
|
} |