-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 756 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 756 Bytes
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
{
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2021",
"module": "commonjs",
"lib": ["ES2021"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@logistics/proto": ["libs/proto/src/index.ts"],
"@logistics/kafka-utils": ["libs/kafka-utils/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}