Files
vscode/build/tsconfig.json
Matt Bierner 9ebaef7fe4 Fix node_modules being included in our ts projects
Part of #24698

**bug**
A node_modules folder under build/lib/watch is being included in our project system. This slows down TS quite a lot

**fix**
Remove this and remove the root jsconfig.json in the project
2017-05-08 15:43:04 -07:00

17 lines
315 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": false,
"removeComments": false,
"preserveConstEnums": true,
"target": "es5",
"sourceMap": false,
"experimentalDecorators": true,
"noLib": true,
"newLine": "LF"
},
"exclude": [
"node_modules",
"./lib/watch/node_modules/**/*"
]
}