https://github.com/angular/angular
Raw File
Tip revision: c2dbc55f115eb259a6d90e2b45ed61c329258c22 authored by Igor Minar on 06 December 2017, 20:08:51 UTC
release: cut the 5.1.0 release
Tip revision: c2dbc55
tsconfig-build.json
{
  "extends": "../tsconfig-build.json",

  "compilerOptions": {
    "baseUrl": ".",
    "rootDir": ".",
    "paths": {
      "rxjs/*": ["../../node_modules/rxjs/*"],
      "@angular/core": ["."]
    },
    "outDir": "../../dist/packages/core"
  },

  "files": [
    "public_api.ts",
    "../../node_modules/zone.js/dist/zone.js.d.ts",
    "../system.d.ts"
  ],

  "angularCompilerOptions": {
    "annotateForClosureCompiler": true,
    "strictMetadataEmit": false,
    "skipTemplateCodegen": true,
    "flatModuleOutFile": "core.js",
    "flatModuleId": "@angular/core"
  }
}
back to top