35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"files.associations": {
|
|
"tsconfig.json": "jsonc",
|
|
"typescript-config/*.json": "jsonc"
|
|
},
|
|
|
|
// Javascript and TypeScript settings
|
|
"javascript.suggest.enabled": true,
|
|
"javascript.suggest.autoImports": true,
|
|
"javascript.preferences.importModuleSpecifier": "shortest",
|
|
|
|
"typescript.suggest.enabled": true,
|
|
"typescript.suggest.autoImports": true,
|
|
"typescript.suggest.completeFunctionCalls": true,
|
|
"typescript.suggest.includeAutomaticOptionalChainCompletions": true,
|
|
"typescript.suggestionActions.enabled": true,
|
|
"typescript.preferences.importModuleSpecifier": "shortest",
|
|
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": false,
|
|
"prettier.useEditorConfig": false,
|
|
"prettier.useTabs": false,
|
|
"prettier.configPath": ".prettierrc",
|
|
|
|
// other vscode settings
|
|
"[handlebars]": {
|
|
"editor.defaultFormatter": "vscode.html-language-features"
|
|
} // <- your root font size here
|
|
}
|