1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 16:17:37 +00:00
Files
TypeScript-Node-Starter/.vscode/settings.json
Christophe Benz 09c8ad5019 Fix typo
2019-08-26 10:38:20 +02:00

28 lines
679 B
JSON

// Place your settings in this file to overwrite default and user settings.
{
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
{ "language": "typescript", "autoFix": true }
],
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false
},
"[typescript]": {
"editor.formatOnSave": false
},
"[markdown]": {
"editor.formatOnSave": false
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/dist": true,
"**/coverage": true
},
"typescript.referencesCodeLens.enabled": true,
"appService.zipIgnorePattern": [".vscode{,/**}"],
"appService.deploySubpath": ""
}