2016-05-03 16:24:09 +00:00
|
|
|
{
|
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
|
// For TypeScript 1.8, we have to lay out generated files
|
|
|
|
|
// in the same source directory with your code.
|
2016-06-15 21:56:56 +00:00
|
|
|
"genDir": ".",
|
|
|
|
|
"debug": true
|
2016-05-03 16:24:09 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "es5",
|
|
|
|
|
"experimentalDecorators": true,
|
2016-05-07 15:20:56 +00:00
|
|
|
"noImplicitAny": true,
|
2016-05-03 16:24:09 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"rootDir": "",
|
|
|
|
|
"declaration": true,
|
2016-08-13 00:38:29 +00:00
|
|
|
"lib": ["es6", "dom"],
|
|
|
|
|
"baseUrl": "."
|
2016-10-06 15:37:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"files": [
|
|
|
|
|
"src/module",
|
|
|
|
|
"src/bootstrap",
|
|
|
|
|
"test/all_spec",
|
|
|
|
|
"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"
|
|
|
|
|
]
|
2016-05-03 16:24:09 +00:00
|
|
|
}
|