https://github.com/angular/angular
Revision 3d60f2cefc902d5d50772cfb49f412a23c5115dc authored by Amadou Sall on 17 October 2019, 23:40:42 UTC, committed by Matias Niemelä on 18 October 2019, 18:40:58 UTC
1 parent f13e40d
Raw File
Tip revision: 3d60f2cefc902d5d50772cfb49f412a23c5115dc authored by Amadou Sall on 17 October 2019, 23:40:42 UTC
docs: clarify instructions on where to create the proxy.conf.json file (#33244)
Tip revision: 3d60f2c
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