https://github.com/angular/angular
Raw File
Tip revision: 06e479ff66c4fd91208311334f57c7d21b36d554 authored by Victor Berchet on 10 August 2017, 16:39:40 UTC
docs: add changelog for 4.3.4
Tip revision: 06e479f
tsconfig-build.json
{
  "compilerOptions": {
    "baseUrl": ".",
    "declaration": true,
    "stripInternal": true,
    "experimentalDecorators": true,
    "strictNullChecks": true,
    "module": "es2015",
    "moduleResolution": "node",
    "outDir": "../../dist/packages/upgrade",
    "paths": {
      "@angular/core": ["../../dist/packages/core"],
      "@angular/common": ["../../dist/packages/common"],
      "@angular/compiler": ["../../dist/packages/compiler"],
      "@angular/platform-browser": ["../../dist/packages/platform-browser"],
      "@angular/platform-browser-dynamic": ["../../dist/packages/platform-browser-dynamic"]
    },
    "rootDir": ".",
    "sourceMap": true,
    "inlineSources": true,
    "target": "es2015",
    "skipLibCheck": true,
    "lib": [ "es2015", "dom" ],
    // don't auto-discover @types/node, it results in a ///<reference in the .d.ts output
    "types": []
  },
  "files": [
    "public_api.ts",
    "../../node_modules/zone.js/dist/zone.js.d.ts"
  ],
  "angularCompilerOptions": {
    "annotateForClosureCompiler": true,
    "strictMetadataEmit": true,
    "flatModuleOutFile": "index.js",
    "flatModuleId": "@angular/upgrade"
  }
}
back to top