angular/packages/service-worker/cli/tsconfig.json
Kristiyan Kostadinov 52cc7f839b build: align with internal tsconfig options (#51728)
Currently internally Angular has some customized tsconfig files, because we don't align with the tsconfig of the rest of g3. These changes enable `noImplicitReturns` and `noPropertyAccessFromIndexSignature` to align better with the internal config.

PR Close #51728
2023-09-12 11:39:42 -07:00

36 lines
847 B
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"
]
}