2022-08-22 18:51:46 -06:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
2022-10-06 23:19:48 -06:00
|
|
|
//customizations
|
|
|
|
"allowSyntheticDefaultImports": true, // required for pouchdb/fhirclient or oauth2
|
|
|
|
"strictPropertyInitialization":false, // otherwise every class requires complex contrutor or defaults
|
|
|
|
"strict": false, //lots of failures
|
|
|
|
"noImplicitOverride": false, //requires override decorator everywhere
|
|
|
|
"noImplicitReturns": false, //lots of failures.
|
|
|
|
"typeRoots": ["node_modules/@types"],
|
|
|
|
|
2022-08-22 18:51:46 -06:00
|
|
|
"baseUrl": "./",
|
|
|
|
"outDir": "./dist/out-tsc",
|
2022-10-06 23:19:48 -06:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2022-08-22 18:51:46 -06:00
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": false,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"importHelpers": true,
|
2022-10-06 23:19:48 -06:00
|
|
|
"target": "es2020",
|
|
|
|
"module": "es2020",
|
2022-08-22 18:51:46 -06:00
|
|
|
"lib": [
|
2022-10-06 23:19:48 -06:00
|
|
|
"es2020",
|
|
|
|
"dom",
|
2023-01-15 12:37:26 -07:00
|
|
|
],
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true
|
2022-08-22 18:51:46 -06:00
|
|
|
},
|
|
|
|
"angularCompilerOptions": {
|
2022-10-06 23:19:48 -06:00
|
|
|
//customizations
|
|
|
|
// "strictTemplates": true
|
|
|
|
|
|
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
|
|
"strictInjectionParameters": true,
|
|
|
|
"strictInputAccessModifiers": true,
|
2022-08-22 18:51:46 -06:00
|
|
|
}
|
|
|
|
}
|