https://github.com/angular/angular
Raw File
Tip revision: 28eecf571915f48e389d7b69c55d406001c31df8 authored by Alex Rickabaugh on 15 December 2021, 20:15:45 UTC
release: cut the v13.2.0-next.1 release (#44497)
Tip revision: 28eecf5
tsconfig.json
{
  "compilerOptions": {
    "noImplicitReturns": true,
    "noImplicitOverride": true,
    "useUnknownInCatchVariables": false,
    "noFallthroughCasesInSwitch": true,
    "esModuleInterop": true,
    "strict": true,
    "moduleResolution": "node",
    "target": "es2019",
    "lib": ["es2019"],
    "types": ["jasmine"],
    "baseUrl": ".",
    "paths": {
      "@angular/core": ["../"],
      "@angular/compiler": ["../../compiler"],
      "@angular/compiler-cli": ["../../compiler-cli"],
      "@angular/compiler-cli/private/*": ["../../compiler-cli/private/*"]
    }
  },
  "bazelOptions": {
    "suppressTsconfigOverrideWarnings": true
  }
}
back to top