https://github.com/angular/angular
Raw File
Tip revision: 3ccb4490a43ede51088615fd6bcffdcb98fdc45e authored by Miško Hevery on 13 June 2018, 23:08:29 UTC
release: cut the v6.1.0-beta.1 release
Tip revision: 3ccb449
tsconfig-build.json
{
  "extends": "../tsconfig-build.json",

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

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

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