2016-04-29 00:50:03 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"declaration": true,
|
2016-05-19 22:29:50 +00:00
|
|
|
"stripInternal": true,
|
2016-04-29 00:50:03 +00:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
2017-03-24 16:59:58 +00:00
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"strictNullChecks": true,
|
2018-06-18 23:38:33 +00:00
|
|
|
"strictPropertyInitialization": true,
|
2017-03-24 16:59:58 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2016-04-29 00:50:03 +00:00
|
|
|
"module": "es2015",
|
|
|
|
|
"moduleResolution": "node",
|
2017-03-02 20:12:46 +00:00
|
|
|
"outDir": "../../dist/packages/compiler",
|
2017-09-20 16:54:47 +00:00
|
|
|
"paths": {
|
|
|
|
|
"@angular/core": ["../../dist/packages/core"]
|
|
|
|
|
},
|
2016-04-29 00:50:03 +00:00
|
|
|
"rootDir": ".",
|
|
|
|
|
"sourceMap": true,
|
2016-05-03 02:45:52 +00:00
|
|
|
"inlineSources": true,
|
2017-01-28 01:39:48 +00:00
|
|
|
"target": "es2015",
|
2016-08-31 01:07:40 +00:00
|
|
|
"skipLibCheck": true,
|
2017-01-24 17:04:11 +00:00
|
|
|
"lib": ["es2015", "dom"],
|
|
|
|
|
// don't auto-discover @types/node, it results in a ///<reference in the .d.ts output
|
|
|
|
|
"types": []
|
2016-04-29 00:50:03 +00:00
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"index.ts",
|
2017-03-02 20:12:46 +00:00
|
|
|
"../../node_modules/zone.js/dist/zone.js.d.ts"
|
2017-09-20 16:54:47 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
|
"annotateForClosureCompiler": true,
|
|
|
|
|
"skipMetadataEmit": true,
|
|
|
|
|
"skipTemplateCodegen": true
|
|
|
|
|
}
|
2016-04-29 00:50:03 +00:00
|
|
|
}
|