I am removing the Typescript transpilation part, the project will have full typescript support, Typescript support will not be removed.
28 lines
782 B
JSON
28 lines
782 B
JSON
{
|
|
"files.eol": "\n",
|
|
"files.encoding": "utf8",
|
|
"files.defaultLanguage": "typescript",
|
|
"files.trimFinalNewlines": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"editor.tabSize": 2,
|
|
"editor.insertSpaces": true,
|
|
"editor.minimap.enabled": false,
|
|
"editor.detectIndentation": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true
|
|
},
|
|
"files.exclude": {
|
|
"**/node_modules/": true,
|
|
"**/**.d.ts": true,
|
|
"**/build/": true
|
|
},
|
|
"terminal.integrated.env.windows": {
|
|
"PATH": "${workspaceFolder}/node_modules/.bin;${env:PATH}"
|
|
},
|
|
"terminal.integrated.env.linux": {
|
|
"PATH": "${workspaceFolder}/node_modules/.bin:${env:PATH}"
|
|
},
|
|
"terminal.integrated.env.osx": {
|
|
"PATH": "${workspaceFolder}/node_modules/.bin:${env:PATH}"
|
|
}
|
|
} |