Introduce a shared tsconfig for extensions

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
This commit is contained in:
Matt Bierner
2018-10-01 16:35:43 -07:00
parent 199c51f4a5
commit 402106a699
3 changed files with 21 additions and 13 deletions

View File

@@ -1,18 +1,7 @@
{
"extends": "../shared.tsconfig.json",
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"lib": [
"es6",
"es2015.promise"
],
"outDir": "./out",
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"alwaysStrict": true,
"experimentalDecorators": true
},
"include": [