-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
55 lines (55 loc) · 2.23 KB
/
tsconfig.base.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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"inlineSources": true,
"lib": ["es2022", "dom"],
"module": "esnext",
"moduleResolution": "node",
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmitOnError": true,
"paths": {
"@bewoak/common-configs-server-env": ["libs/common/configs/server/env/src/index.ts"],
"@bewoak/common-configs-server-swagger": ["libs/common/configs/server/swagger/src/index.ts"],
"@bewoak/common-contracts-events-pathway": ["libs/common/contracts/events/pathway/src/index.ts"],
"@bewoak/common-events": ["libs/common/events/src/index.ts"],
"@bewoak/common-tools-server-http-exceptions": ["libs/common/tools/server/http-exceptions/src/index.ts"],
"@bewoak/pathway-design-common-business-pathway-rules": [
"libs/pathway-design/common/business/pathway/rules/src/index.ts"
],
"@bewoak/pathway-design-server-pathway-application": ["libs/pathway-design/server/pathway/application/src/index.ts"],
"@bewoak/pathway-design-server-pathway-business": ["libs/pathway-design/server/pathway/business/src/index.ts"],
"@bewoak/pathway-design-server-pathway-infrastructure": [
"libs/pathway-design/server/pathway/infrastructure/src/index.ts"
],
"@bewoak/pathway-design-server-pathway-interface-adapters": [
"libs/pathway-design/server/pathway/interface-adapters/src/index.ts"
],
"@bewoak/pathway-design-server-pathway-presenters": ["libs/pathway-design/server/pathway/presenters/src/index.ts"]
},
"rootDir": ".",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"target": "es2022"
},
"exclude": [
".angular",
".git",
".github",
".hooks",
".nx",
".verdaccio",
".vscode",
"coverage",
"dist",
"node_modules",
"tmp"
]
}