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