2016-10-24 20:28:23 +00:00
|
|
|
{
|
|
|
|
|
"angularCompilerOptions": {
|
2019-01-22 17:46:51 +00:00
|
|
|
"alwaysCompileGeneratedCode": true,
|
|
|
|
|
"annotationsAs": "static fields",
|
2017-06-09 21:00:03 +00:00
|
|
|
"debug": true,
|
2017-06-12 21:10:08 +00:00
|
|
|
"enableSummariesForJit": true,
|
2022-09-05 09:52:20 +00:00
|
|
|
"i18nFormat": "xlf"
|
2016-10-24 20:28:23 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"compilerOptions": {
|
2019-01-22 17:46:51 +00:00
|
|
|
"baseUrl": ".",
|
2016-10-24 20:28:23 +00:00
|
|
|
"declaration": true,
|
2019-01-22 17:46:51 +00:00
|
|
|
"experimentalDecorators": true,
|
2021-12-16 13:11:53 +00:00
|
|
|
"lib": ["es2015", "dom"],
|
2019-01-22 17:46:51 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"noImplicitAny": true,
|
2017-03-15 22:50:30 +00:00
|
|
|
"noUnusedLocals": true,
|
2019-01-22 17:46:51 +00:00
|
|
|
"rootDir": "",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
// compatible with the option. Disabled until the integration test support the strict flag.
|
|
|
|
|
// TODO(devversion): this has been enabled without the integration test code being
|
|
|
|
|
"strictPropertyInitialization": false,
|
2021-12-16 13:11:53 +00:00
|
|
|
"target": "es2015",
|
2019-10-15 01:00:17 +00:00
|
|
|
"typeRoots": ["node_modules/@types"]
|
2016-10-24 20:28:23 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"files": [
|
|
|
|
|
"src/module",
|
|
|
|
|
"src/bootstrap",
|
|
|
|
|
"test/all_spec",
|
|
|
|
|
]
|
2017-03-29 16:34:45 +00:00
|
|
|
}
|