73 lines
2.2 KiB
JSON
73 lines
2.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": false,
|
|
// "module": "es2022",
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"noEmit": false,
|
|
"importHelpers": true,
|
|
"resolveJsonModule": true,
|
|
/* Strict Type-Checking Options */
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noImplicitOverride": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
/* Additional Checks */
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"useUnknownInCatchVariables": true,
|
|
/* Module Resolution Options */
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@App/*": ["src/app/*"],
|
|
"@Api/*": ["src/app/api/*"],
|
|
"@Services/*": ["src/services/*"],
|
|
"@Repositories/*": ["src/common/repositories/*"],
|
|
"@Entries/*": ["src/entries/*"],
|
|
"@Common/*": ["src/common/*"],
|
|
"@Config/*": ["src/common/config/*"],
|
|
"@Entities/*": ["src/common/ressources/*"],
|
|
"@System/*": ["src/common/system/*"],
|
|
"@ControllerPattern/*": ["src/common/system/controller-pattern/*"],
|
|
"@Test/*": ["src/test/*"]
|
|
},
|
|
// "rootDirs": [],
|
|
// "typeRoots": [],
|
|
// "types": [],
|
|
// "allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
// "allowUmdGlobalAccess": true,
|
|
/* Source Map Options */
|
|
//"sourceRoot": "./src",
|
|
//"mapRoot": "./dist",
|
|
//"inlineSourceMap": false,
|
|
//"inlineSources": false,
|
|
/* Experimental Options */
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true,
|
|
"isolatedModules": true
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", "src/services/common/TestService"],
|
|
"exclude": ["node_modules"]
|
|
}
|