mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 13:43:07 +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
13 lines
No EOL
150 B
JSON
13 lines
No EOL
150 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": [
|
|
"es2015"
|
|
],
|
|
"module": "commonjs",
|
|
"outDir": "./out"
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
} |