https://github.com/angular/angular
Raw File
Tip revision: 154129b9defa9295f4684c595d1981c9b3c970c5 authored by Alex Rickabaugh on 01 April 2021, 21:35:30 UTC
release: cut the v11.2.8 release (#41419)
Tip revision: 154129b
tsconfig.json
{
  "angularCompilerOptions": {
    "enableIvy": false,
  },

  "compilerOptions": {
    "module": "es2015",
    "moduleResolution": "node",
    // TODO(i): strictNullChecks should turned on but are temporarily disabled due to #15432
    "strictNullChecks": false,
    "target": "es6",
    "noImplicitAny": false,
    "sourceMap": false,
    "experimentalDecorators": true,
    "outDir": "built",
    "rootDir": ".",
    "declaration": true,
    "typeRoots": ["node_modules/@types"]
  },

  "exclude": [
    "vendor",
    "node_modules",
    "built",
    "dist",
    "e2e"
  ]
}
back to top