-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
78 lines (78 loc) · 2.33 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"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/*"],
"@Common/*": ["src/common/*"],
"@Config/*": ["src/common/config/*"],
"@ControllerPattern/*": ["src/common/system/controller-pattern/*"],
"@Entities/*": ["src/common/ressources/*"],
"@Entries/*": ["src/entries/*"],
"@Repositories/*": ["src/common/repositories/*"],
"@RpcGateway/*": ["src/rpc-gateway/*"],
"@Services/*": ["src/common/services/*"],
"@System/*": ["src/common/system/*"],
"@Tests/*": ["src/tests/*"]
},
// "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" ],
"exclude": [
"node_modules"
]
}