https://github.com/angular/angular
Raw File
Tip revision: d1762c78afdc22974ed755754b08fb57d8732976 authored by Andrew Scott on 12 January 2022, 18:47:32 UTC
release: cut the v13.1.2 release (#44698)
Tip revision: d1762c7
tsconfig.json
{
  "compilerOptions": {
    "forceConsistentCasingInFileNames": true,
    "strict": true,
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
    "experimentalDecorators": true,
    "module": "commonjs",
    "moduleResolution": "node",
    "outDir": "./dist/out-tsc",
    "rootDir": ".",
    "target": "es5",
    "lib": [
      "es5",
      "dom",
      "es2015.collection",
      "es2015.iterable",
      "es2015.promise"
    ],
    "types": [],
  },
  "files": [
    "include-all.ts",
    "node_modules/@types/jasmine/index.d.ts"
  ]
}
back to top