b836aca999
This commit was worked on by a number of people including @filipesilva, @gkalpak and @wardbell. It contains changes that: * remove unused files, * fix the bootstrap approach to ensure that bootstrap is in the correct Zone * fix unclosed code-example tags * replace use of "we" with "you" * remove broken dual router example Related to angular/angular.io#3541
22 lines
448 B
JSON
22 lines
448 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": [ "es2015", "dom" ],
|
|
"noImplicitAny": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types/"
|
|
]
|
|
},
|
|
"compileOnSave": true,
|
|
"exclude": [
|
|
"node_modules/*",
|
|
"**/*-aot.ts"
|
|
]
|
|
}
|