https://github.com/angular/angular
Raw File
Tip revision: 50623ea1e162f9424024b0393326c1442f24c7e9 authored by Pawel Kozlowski on 06 March 2024, 19:24:27 UTC
release: cut the v17.2.4 release
Tip revision: 50623ea
tsconfig.json
{
  "compilerOptions": {
    "baseUrl": ".",
    "declaration": false,
    "strict": true,
    "module": "es2020",
    "moduleResolution": "node",
    "strictNullChecks": true,
    "noImplicitReturns": true,
    "noPropertyAccessFromIndexSignature": true,
    "strictPropertyInitialization": true,
    "outDir": "../../../dist/all/@angular/service-worker/cli-custom",
    "noImplicitAny": true,
    "noImplicitOverride": true,
    "noFallthroughCasesInSwitch": true,
    "rootDir": ".",
    "paths": {
      "@angular/service-worker/config": [
        "../../../dist/packages/service-worker/config"
      ]
    },
    "inlineSourceMap": true,
    "lib": [
      "es2020"
    ],
    "target": "es2020",
    "typeRoots": [],
    "types": [
      "node"
    ]
  },
  "files": [
    "main.ts",
    "../../../node_modules/@types/node/index.d.ts"
  ]
}
back to top