Use shared tsconfig (#8214)

* Use shared tsconfig

* Fix errors

* Remove sourcemap option
This commit is contained in:
Amir Omidi
2019-11-04 17:25:01 -08:00
committed by GitHub
parent 9eb438bb24
commit c70e7794eb
9 changed files with 52 additions and 32 deletions

View File

@@ -1,17 +1,17 @@
{
"extends": "../shared.tsconfig.json",
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"target": "ES5",
"outDir": "out",
"noUnusedLocals": true,
"lib": [
"es2015"
],
"sourceMap": true
"strict": false,
"noUnusedParameters": false,
"noImplicitAny": false,
},
"include": [
"src/**/*"
]
}
}