85 lines
2.5 KiB
JSON
85 lines
2.5 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": false,
|
|
"target": "es5",
|
|
"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": false,
|
|
"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,
|
|
"noImplicitReturns": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"useUnknownInCatchVariables": true,
|
|
/* Module Resolution Options */
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@Api/*": ["src/api/*"],
|
|
"@Front/*": ["src/front/*"],
|
|
"@Assets/*": ["src/front/Assets/*"],
|
|
"@Components/*": ["src/front/Components/*"],
|
|
"@Themes/*": ["src/front/Themes/*"],
|
|
"@Stores/*": ["src/front/Stores/*"],
|
|
"@FrontServices/*": ["src/front/services/*"],
|
|
"@Page/*": ["src/pages/*"],
|
|
"@Services/*": ["src/common/services/*"],
|
|
"@Entries/*": ["src/entries/*"],
|
|
"@Common/*": ["src/common/*"],
|
|
"@Config/*": ["src/common/config/*"],
|
|
"@Entities/*": ["src/common/ressources/*"],
|
|
"@System/*": ["src/common/system/*"],
|
|
"@ControllerPattern/*": ["src/common/system/controller-pattern/*"],
|
|
},
|
|
// "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": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
, "src/front/next.config.js" ],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|