-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathtsconfig.json
More file actions
69 lines (63 loc) · 1.69 KB
/
tsconfig.json
File metadata and controls
69 lines (63 loc) · 1.69 KB
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
{
"compilerOptions": {
/* Language and Environment */
"target": "ES2020",
"lib": ["ES2020"],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
/* Modules */
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
/* Emit */
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"removeComments": true,
"incremental": true,
/* Interop Constraints */
"isolatedModules": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": false,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": false,
/* Completeness */
"skipLibCheck": true,
/* Path Mapping for Monorepo */
"baseUrl": ".",
"paths": {
"@engine/core": ["libs/engine/core"],
"@engine/core/*": ["libs/engine/core/*"],
"@engine/analyzers": ["libs/engine/analyzers"],
"@engine/analyzers/*": ["libs/engine/analyzers/*"],
"@engine/*": ["libs/engine/*"],
"@rules/*": ["packages/rules/*"],
"@api/*": ["apps/api/src/*"]
}
},
"include": [
"apps/**/*",
"libs/**/*",
"packages/**/*"
, "apps/api-service/src/transection/dto/.dto .ts" ],
"exclude": [
"node_modules",
"dist",
"**/*.spec.ts",
"**/*.test.ts"
]
}