https://github.com/angular/angular
Raw File
Tip revision: a10bf344716e4c4b7e04ab10ef615ac6c248683d authored by Alex Eagle on 28 February 2018, 23:01:38 UTC
docs: add changelog for 5.2.7
Tip revision: a10bf34
tsconfig-build.json
{
  "extends": "../tsconfig-build.json",

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

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

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