https://github.com/angular/angular
Raw File
Tip revision: 61abba4bed7f45e6821aeaa7ddb9a05d4b59177a authored by Jason Aden on 31 January 2018, 21:15:40 UTC
docs: add changelog for 6.6.0-beta.2
Tip revision: 61abba4
tsconfig.json
{
  "compilerOptions": {
    "baseUrl": ".",
    "declaration": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "module": "commonjs",
    "moduleResolution": "node",
    "outDir": "../dist/all/",
    "noImplicitAny": true,
    "noFallthroughCasesInSwitch": true,
    "paths": {
      "selenium-webdriver": ["../node_modules/@types/selenium-webdriver/index.d.ts"],
      "rxjs/*": ["../node_modules/rxjs/*"],
      "@angular/*": ["../dist/all/@angular/*"]
    },
    "rootDir": ".",
    "inlineSourceMap": true,
    "lib": ["es5", "dom", "es2015.promise", "es2015.collection", "es2015.iterable"],
    "skipDefaultLibCheck": true,
    "skipLibCheck": true,
    "target": "es5",
    "types": ["angularjs"]
  },
  "exclude": [
    "angular1_router",
    "benchmarks/e2e_test/old",
    "benchmarks/src/old",
    "benchmarks/src/**/index_aot.ts",
    "benchmarks_external",
    "payload_tests",
    "rollup-test"
  ],
  "angularCompilerOptions": {
    "skipTemplateCodegen": true
  }
}
back to top