https://github.com/angular/angular
Raw File
Tip revision: f1108fea766167f06e229bfd7992d4119838a3d4 authored by Matias Niemelä on 24 October 2017, 06:28:28 UTC
docs: add changelog for 5.0.0-rc.5
Tip revision: f1108fe
tsconfig-build.json
{
  "extends": "../tsconfig-build.json",

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

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

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