2016-04-28 20:50:03 -04:00
|
|
|
{
|
2017-06-02 12:43:52 -04:00
|
|
|
"angularCompilerOptions": {
|
|
|
|
"annotateForClosureCompiler": true,
|
|
|
|
"strictMetadataEmit": true,
|
|
|
|
"flatModuleOutFile": "index.js",
|
|
|
|
"flatModuleId": "@angular/common"
|
|
|
|
},
|
|
|
|
|
2016-04-28 20:50:03 -04:00
|
|
|
"compilerOptions": {
|
2016-05-19 18:29:50 -04:00
|
|
|
"stripInternal": true,
|
2017-03-24 12:54:02 -04:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2016-04-28 20:50:03 -04:00
|
|
|
"module": "es2015",
|
|
|
|
"moduleResolution": "node",
|
2017-06-02 12:43:52 -04:00
|
|
|
"target": "es2015",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"lib": [ "es2015", "dom" ],
|
|
|
|
// don't auto-discover @types/node, it results in a ///<reference in the .d.ts output
|
|
|
|
"types": [],
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The rest of the file is configuration that's overridden by bazel.
|
|
|
|
* It can be removed after we fully migrate.
|
|
|
|
*/
|
|
|
|
"baseUrl": ".",
|
|
|
|
"declaration": true,
|
|
|
|
"experimentalDecorators": true,
|
2017-03-02 15:12:46 -05:00
|
|
|
"outDir": "../../dist/packages/common",
|
2016-04-28 20:50:03 -04:00
|
|
|
"paths": {
|
2017-03-02 15:12:46 -05:00
|
|
|
"@angular/core": ["../../dist/packages/core"]
|
2016-04-28 20:50:03 -04:00
|
|
|
},
|
|
|
|
"rootDir": ".",
|
|
|
|
"sourceMap": true,
|
2017-06-02 12:43:52 -04:00
|
|
|
"inlineSources": true
|
2016-04-28 20:50:03 -04:00
|
|
|
},
|
|
|
|
"files": [
|
2017-02-15 16:30:40 -05:00
|
|
|
"public_api.ts",
|
2017-03-02 15:12:46 -05:00
|
|
|
"../../node_modules/zone.js/dist/zone.js.d.ts"
|
2017-06-02 12:43:52 -04:00
|
|
|
]
|
2016-04-28 20:50:03 -04:00
|
|
|
}
|