mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
7d2dea4e45
**Bug** Most VSCode extensions currently specify `"exclude"` in their `tsconfig.json` but not `"include"`. This may result in extra files being included in each project **Fix** Add `"include": ["src/**/*"]` to all extension tsconfig files
18 lines
No EOL
288 B
JSON
18 lines
No EOL
288 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es2016"
|
|
],
|
|
"outDir": "./out",
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
} |