mirror of
https://github.com/Microsoft/vscode
synced 2024-10-31 01:12:58 +00:00
402106a699
Setup a baseline tsconfig for extensions to extend. This will help make sure thatof our built-in extensions are using the recommended settings for target and so on. it also reduces duplicated code and will make updating tsconfig settings easier
10 lines
No EOL
152 B
JSON
10 lines
No EOL
152 B
JSON
{
|
|
"extends": "../shared.tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out",
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
} |