This ensures we run in a clean directory, using our real distribution. It finds bugs like @internal APIs needed to type-check in the offline compiler, as well as problems in package.json. Also move tsc-wrapped under tools/@angular
19 lines
451 B
JSON
19 lines
451 B
JSON
{
|
|
"angularCompilerOptions": {
|
|
// For TypeScript 1.8, we have to lay out generated files
|
|
// in the same source directory with your code.
|
|
"genDir": "."
|
|
},
|
|
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"rootDir": "",
|
|
"declaration": true,
|
|
"lib": ["es6", "dom"],
|
|
"baseUrl": "."
|
|
}
|
|
}
|