mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +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
16 lines
No EOL
271 B
JSON
16 lines
No EOL
271 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6",
|
|
"es2015.promise"
|
|
],
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true
|
|
}
|
|
} |