https://github.com/angular/angular
Raw File
Tip revision: 4e7d2bd5bfc329704e0577f7c987970a708c8c15 authored by Matias Niemelä on 15 September 2017, 21:54:32 UTC
docs: add changelog for 4.4.0
Tip revision: 4e7d2bd
tsconfig-build.json
{
  "angularCompilerOptions": {
    "annotateForClosureCompiler": true,
    "strictMetadataEmit": true,
    "flatModuleOutFile": "index.js",
    "flatModuleId": "@angular/common"
  },

  "compilerOptions": {
    "stripInternal": true,
    "strictNullChecks": true,
    "noImplicitAny": true,
    "noFallthroughCasesInSwitch": true,
    "module": "es2015",
    "moduleResolution": "node",
    "target": "es2015",
    "skipLibCheck": true,
    "lib": [ "es2015", "dom" ],
    // don't auto-discover @types/node, it results in a ///<reference in the .d.ts output
    "types": [],

    /**
     * The rest of the file is configuration that's overridden by bazel.
     * It can be removed after we fully migrate.
     */
    "baseUrl": ".",
    "declaration": true,
    "experimentalDecorators": true,
    "outDir": "../../dist/packages/common",
    "paths": {
      "@angular/core": ["../../dist/packages/core"]
    },
    "rootDir": ".",
    "sourceMap": true,
    "inlineSources": true
  },
  "files": [
    "public_api.ts",
    "../../node_modules/zone.js/dist/zone.js.d.ts"
  ]
}
back to top