mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-29 04:53:33 +01:00
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
17 lines
315 B
JSON
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/**/*"
|
|
]
|
|
} |