29 lines
801 B
JSON
29 lines
801 B
JSON
{
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"typescript.preferences.quoteStyle": "double",
|
|
"javascript.preferences.quoteStyle": "double",
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
"**/*.js.map": true
|
|
},
|
|
"eslint.validate": [
|
|
"typescript",
|
|
"typescriptreact"
|
|
],
|
|
"eslint.lintTask.enable": true,
|
|
"eslint.lintTask.options": "\"src/**\"",
|
|
"eslint.experimental.useFlatConfig": true,
|
|
"editor.tabSize": 2,
|
|
"editor.detectIndentation": false,
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
}
|