https://github.com/angular/angular
Raw File
Tip revision: b7212f5afeb229f1036a68b8e10e7634f5ab694c authored by Chuck Jazdzewski on 17 March 2017, 02:57:49 UTC
docs: add changelog for 4.0.0-rc.4
Tip revision: b7212f5
tsconfig-build.json
{
  "compilerOptions": {
    "baseUrl": ".",
    "declaration": true,
    "stripInternal": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "module": "es2015",
    "moduleResolution": "node",
    "noEmitOnError": false,
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "outDir": "../../dist/packages/router",
    "paths": {
      "@angular/core": ["../../dist/packages/core"],
      "@angular/common": ["../../dist/packages/common"],
      "@angular/platform-browser": ["../../dist/packages/platform-browser"]
    },
    "rootDir": ".",
    "sourceMap": true,
    "inlineSources": true,
    "lib": ["es2015", "dom"],
    "target": "es2015",
    "skipLibCheck": true
  },
  "files": [
    "public_api.ts"
  ],
  "angularCompilerOptions": {
    "annotateForClosureCompiler": true,
    "strictMetadataEmit": true,
    "flatModuleOutFile": "index.js",
    "flatModuleId": "@angular/router"
  }
}
back to top