https://github.com/angular/angular
Raw File
Tip revision: f2dbf8663e2e9d1a68b4d4257640dceb2949a2e6 authored by Paul Gschwendtner on 24 June 2021, 14:12:12 UTC
build: update bazel nodejs fetch urls to fix 404 error (#42646)
Tip revision: f2dbf86
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,
    "strictNullChecks": true,
    "strict": true,
    "strictPropertyInitialization": true,
    "noFallthroughCasesInSwitch": true,
    "moduleResolution": "node",
    "module": "es2015",
    "target": "es2015",
    "lib": ["es2015", "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,
    "devmodeTargetOverride": "es5"
  }
}
back to top