public-gateway-cacher/tsconfig.json

41 lines
1.2 KiB
JSON
Raw Permalink Normal View History

/* To learn more about this file see: https://angular.io/config/tsconfig. */
2019-11-29 02:20:50 +00:00
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"strict": true,
2022-03-11 02:44:37 +00:00
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
2022-03-11 02:44:37 +00:00
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
2022-03-11 03:51:02 +00:00
"target": "ESNext",
"module": "ESNext",
2022-03-11 07:06:35 +00:00
"lib": ["ESNext", "DOM"]
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"strictTemplates": true
}
2020-07-10 04:53:52 +00:00
}