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