-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
35 lines (35 loc) · 1.27 KB
/
Copy pathtsconfig.base.json
File metadata and controls
35 lines (35 loc) · 1.27 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
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"declaration": true,
"composite": true,
"incremental": true,
"paths": {
"@kleinkram/api-dto": ["./packages/api-dto/src/index.ts"],
"@kleinkram/api-dto/*": ["./packages/api-dto/src/*"],
"@kleinkram/backend-common": [
"./packages/backend-common/src/index.ts"
],
"@kleinkram/backend-common/*": ["./packages/backend-common/src/*"],
"@kleinkram/shared": ["./packages/shared/src/index.ts"],
"@kleinkram/shared/*": ["./packages/shared/src/*"],
"@kleinkram/validation": ["./packages/validation/src/index.ts"],
"@kleinkram/validation/*": ["./packages/validation/src/*"]
},
"noUnusedLocals": true,
"noUnusedParameters": true
}
}