https://github.com/angular/angular
Raw File
Tip revision: 054de6dc34504c782944cb04e7687aaae2323a34 authored by Andrew Scott on 06 July 2022, 16:28:37 UTC
release: cut the v14.0.5 release (#46724)
Tip revision: 054de6d
tsconfig-build.json
/**
 * Root tsconfig file for use building all Angular packages. Note there is no rootDir
 * and therefore any tsconfig in the package directory will need to define its own
 * rootDir.
 */
{
  "compilerOptions": {
    "declaration": true,
    "stripInternal": true,
    "noImplicitAny": true,
    "noImplicitOverride": true,
    "strictNullChecks": true,
    "esModuleInterop": true,
    "strict": true,
    "strictPropertyInitialization": true,
    "noFallthroughCasesInSwitch": true,
    "moduleResolution": "node",
    "module": "es2020",
    "target": "es2020",
    "lib": [
      "es2020",
      "dom"
    ],
    "skipLibCheck": true,
    // don't auto-discover @types/node, it results in a ///<reference in the .d.ts output
    "types": [],
    "experimentalDecorators": true,
    // This is needed due to https://github.com/Microsoft/TypeScript/issues/17516.
    // As tsickle will lower decorators before TS, this is not a problem for our build.
    "emitDecoratorMetadata": true,
    "sourceMap": true,
    "inlineSources": true,
    "importHelpers": true
  },
  "bazelOptions": {
    "suppressTsconfigOverrideWarnings": true
  }
}
back to top