https://github.com/angular/angular
Raw File
Tip revision: 3988ebf432ec33a7bf7126c7e9ad09d69d0c2501 authored by Ben Lesh on 19 September 2018, 21:07:10 UTC
release: cut the v6.1.8 release
Tip revision: 3988ebf
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