2016-10-24 16:28:23 -04:00
|
|
|
{
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
// For TypeScript 1.8, we have to lay out generated files
|
|
|
|
// in the same source directory with your code.
|
|
|
|
"genDir": ".",
|
2017-06-09 17:00:03 -04:00
|
|
|
"debug": true,
|
2017-06-12 17:10:08 -04:00
|
|
|
"enableSummariesForJit": true,
|
|
|
|
"alwaysCompileGeneratedCode": true
|
2016-10-24 16:28:23 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noImplicitAny": true,
|
2017-03-29 12:34:45 -04:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"skipLibCheck": true,
|
2016-10-24 16:28:23 -04:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"rootDir": "",
|
|
|
|
"declaration": true,
|
|
|
|
"lib": ["es6", "dom"],
|
2017-01-05 14:34:42 -05:00
|
|
|
"baseUrl": ".",
|
|
|
|
// Prevent scanning up the directory tree for types
|
2017-03-13 14:32:07 -04:00
|
|
|
"typeRoots": ["node_modules/@types"],
|
2017-03-15 18:50:30 -04:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"sourceMap": true
|
2016-10-24 16:28:23 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
"files": [
|
|
|
|
"src/module",
|
|
|
|
"src/bootstrap",
|
|
|
|
"test/all_spec",
|
2016-12-13 20:35:06 -05:00
|
|
|
"test/test_ngtools_api",
|
2016-11-29 18:36:33 -05:00
|
|
|
"test/test_summaries",
|
2016-10-24 16:28:23 -04:00
|
|
|
"benchmarks/src/tree/ng2/index_aot.ts",
|
|
|
|
"benchmarks/src/tree/ng2_switch/index_aot.ts",
|
|
|
|
"benchmarks/src/largetable/ng2/index_aot.ts",
|
|
|
|
"benchmarks/src/largetable/ng2_switch/index_aot.ts"
|
|
|
|
]
|
2017-03-29 12:34:45 -04:00
|
|
|
}
|