mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
36 lines
847 B
JSON
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"
|
|
]
|
|
}
|