https://github.com/angular/angular
Raw File
Tip revision: d2e7c99a93393ae5695dd3d374288afad2962b37 authored by Igor Minar on 16 April 2018, 07:21:13 UTC
docs: release notes for the 5.2.10 release
Tip revision: d2e7c99
tsconfig-build.json
{
  "extends": "../tsconfig-build.json",

  "compilerOptions": {
    "module": "commonjs",
    "emitDecoratorMetadata": true,
    "baseUrl": ".",
    "rootDir": ".",
    "paths": {
      "@angular/*": ["../../dist/packages-dist/*"],
      "rxjs/*": ["../../node_modules/rxjs/*"]
    },
    "outDir": "../../dist/examples",
    "types": ["jasmine", "node", "angularjs", "systemjs"]
  },

  "include": [
    "./**/*.ts",
    "../../node_modules/zone.js/dist/zone.js.d.ts",
    // TODO(i): we can't use protractor's built-in typings because they contain lots of ambient definitions
    "../../node_modules/@types/protractor/index.d.ts"
  ]
}
back to top