2016-04-28 20:50:03 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"declaration": true,
|
2016-05-19 18:29:50 -04:00
|
|
|
"stripInternal": true,
|
2016-04-28 20:50:03 -04:00
|
|
|
"experimentalDecorators": true,
|
2017-03-24 12:59:18 -04:00
|
|
|
"strictNullChecks": true,
|
2016-04-28 20:50:03 -04:00
|
|
|
"module": "es2015",
|
|
|
|
"moduleResolution": "node",
|
2017-03-02 15:12:46 -05:00
|
|
|
"outDir": "../../dist/packages/upgrade",
|
2016-04-28 20:50:03 -04:00
|
|
|
"paths": {
|
2017-03-02 15:12:46 -05:00
|
|
|
"@angular/core": ["../../dist/packages/core"],
|
|
|
|
"@angular/common": ["../../dist/packages/common"],
|
|
|
|
"@angular/compiler": ["../../dist/packages/compiler"],
|
|
|
|
"@angular/platform-browser": ["../../dist/packages/platform-browser"],
|
|
|
|
"@angular/platform-browser-dynamic": ["../../dist/packages/platform-browser-dynamic"]
|
2016-04-28 20:50:03 -04:00
|
|
|
},
|
|
|
|
"rootDir": ".",
|
|
|
|
"sourceMap": true,
|
2016-05-02 22:45:52 -04:00
|
|
|
"inlineSources": true,
|
2017-01-27 20:39:48 -05:00
|
|
|
"target": "es2015",
|
2016-08-30 21:07:40 -04:00
|
|
|
"skipLibCheck": true,
|
2017-01-24 12:04:11 -05:00
|
|
|
"lib": [ "es2015", "dom" ],
|
|
|
|
// don't auto-discover @types/node, it results in a ///<reference in the .d.ts output
|
|
|
|
"types": []
|
2016-04-28 20:50:03 -04:00
|
|
|
},
|
|
|
|
"files": [
|
2017-01-27 20:39:48 -05:00
|
|
|
"public_api.ts",
|
2017-03-02 15:12:46 -05:00
|
|
|
"../../node_modules/zone.js/dist/zone.js.d.ts"
|
2016-08-22 20:37:48 -04:00
|
|
|
],
|
|
|
|
"angularCompilerOptions": {
|
2016-11-16 19:42:24 -05:00
|
|
|
"annotateForClosureCompiler": true,
|
2017-02-15 16:30:40 -05:00
|
|
|
"strictMetadataEmit": true,
|
2017-02-22 13:57:01 -05:00
|
|
|
"flatModuleOutFile": "index.js",
|
|
|
|
"flatModuleId": "@angular/upgrade"
|
2016-08-22 20:37:48 -04:00
|
|
|
}
|
2016-04-28 20:50:03 -04:00
|
|
|
}
|