2017-01-27 00:20:51 -08:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
2017-03-27 19:13:50 +03:00
|
|
|
"baseUrl": "src",
|
2019-04-25 18:06:40 +03:00
|
|
|
"outDir": "./out-tsc",
|
2017-03-27 19:13:50 +03:00
|
|
|
"sourceMap": true,
|
2017-01-27 00:20:51 -08:00
|
|
|
"declaration": false,
|
2019-04-25 18:06:40 +03:00
|
|
|
"module": "esnext",
|
2017-03-27 19:13:50 +03:00
|
|
|
"moduleResolution": "node",
|
2017-01-27 00:20:51 -08:00
|
|
|
"experimentalDecorators": true,
|
2019-04-25 18:06:40 +03:00
|
|
|
"importHelpers": true,
|
|
|
|
"target": "es2015",
|
2017-01-27 00:20:51 -08:00
|
|
|
"typeRoots": [
|
2017-03-27 19:13:50 +03:00
|
|
|
"node_modules/@types"
|
|
|
|
],
|
|
|
|
"lib": [
|
2019-04-25 18:06:40 +03:00
|
|
|
"es2018",
|
2017-03-27 19:13:50 +03:00
|
|
|
"dom"
|
2019-04-25 18:06:40 +03:00
|
|
|
],
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
2019-10-03 12:46:38 +03:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitReturns": true,
|
2019-04-25 18:06:40 +03:00
|
|
|
"noUnusedLocals": true,
|
2019-10-03 12:46:38 +03:00
|
|
|
"noUnusedParameters": true,
|
2019-04-25 18:06:40 +03:00
|
|
|
// disabled because this is on by default in tsc 2.7 breaking our codebase - we need to refactor
|
|
|
|
"strictPropertyInitialization": false
|
2017-04-16 20:03:25 +01:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"aio-builds-setup",
|
2019-04-25 18:06:40 +03:00
|
|
|
"content",
|
|
|
|
"dist",
|
2017-04-16 20:03:25 +01:00
|
|
|
"node_modules",
|
2019-04-25 18:06:40 +03:00
|
|
|
"out-tsc",
|
|
|
|
"scripts",
|
|
|
|
"tools"
|
2019-08-20 10:52:31 -07:00
|
|
|
],
|
2019-10-02 19:26:14 +03:00
|
|
|
"angularCompilerOptions": {
|
|
|
|
"disableTypeScriptVersionCheck": true,
|
2019-10-03 17:00:45 +03:00
|
|
|
"fullTemplateTypeCheck": true,
|
2019-10-02 19:26:14 +03:00
|
|
|
"strictInjectionParameters": true
|
|
|
|
}
|
2017-01-27 00:20:51 -08:00
|
|
|
}
|