https://github.com/angular/angular
Raw File
Tip revision: b1f8eb14c8cd1f415b07d72e09d14bed77c8d4ac authored by Miško Hevery on 16 November 2017, 19:22:58 UTC
docs: add changelog for 5.0.2
Tip revision: b1f8eb1
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