2016-10-24 16:28:23 -04:00
|
|
|
{
|
|
|
|
"angularCompilerOptions": {
|
2019-01-22 12:46:51 -05:00
|
|
|
"alwaysCompileGeneratedCode": true,
|
|
|
|
"annotationsAs": "static fields",
|
2017-06-09 17:00:03 -04:00
|
|
|
"debug": true,
|
2017-06-12 17:10:08 -04:00
|
|
|
"enableSummariesForJit": true,
|
2019-08-20 13:52:31 -04:00
|
|
|
"i18nFormat": "xlf",
|
|
|
|
"enableIvy": false
|
2016-10-24 16:28:23 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
"compilerOptions": {
|
2019-01-22 12:46:51 -05:00
|
|
|
"baseUrl": ".",
|
2016-10-24 16:28:23 -04:00
|
|
|
"declaration": true,
|
2019-01-22 12:46:51 -05:00
|
|
|
"experimentalDecorators": true,
|
2016-10-24 16:28:23 -04:00
|
|
|
"lib": ["es6", "dom"],
|
2019-01-22 12:46:51 -05:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"noImplicitAny": true,
|
2017-03-15 18:50:30 -04:00
|
|
|
"noUnusedLocals": true,
|
2019-01-22 12:46:51 -05: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,
|
2019-10-14 21:00:17 -04:00
|
|
|
"target": "es5",
|
|
|
|
"typeRoots": ["node_modules/@types"]
|
2016-10-24 16:28:23 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
"files": [
|
|
|
|
"src/module",
|
|
|
|
"src/bootstrap",
|
|
|
|
"test/all_spec",
|
2019-01-22 12:46:51 -05:00
|
|
|
"test/test_ngtools_api"
|
2016-10-24 16:28:23 -04:00
|
|
|
]
|
2017-03-29 12:34:45 -04:00
|
|
|
}
|