-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
52 lines (52 loc) · 1.6 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@azkaban/auth-domain": ["libs/auth-domain/src/index.ts"],
"@azkaban/auth-infrastructure": [
"libs/auth-infrastructure/src/index.ts"
],
"@azkaban/foodfolio-domain": ["libs/foodfolio-domain/src/index.ts"],
"@azkaban/foodfolio-infrastructure": [
"libs/foodfolio-infrastructure/src/index.ts"
],
"@azkaban/group-domain": ["libs/group-domain/src/index.ts"],
"@azkaban/group-infrastructure": [
"libs/group-infrastructure/src/index.ts"
],
"@azkaban/notification-domain": [
"libs/notification-domain/src/index.ts"
],
"@azkaban/notification-infrastructure": [
"libs/notification-infrastructure/src/index.ts"
],
"@azkaban/twitch-domain": ["libs/twitch-domain/src/index.ts"],
"@azkaban/twitch-infrastructure": [
"libs/twitch-infrastructure/src/index.ts"
],
"@azkaban/ui-components": ["libs/ui-components/src/index.ts"],
"@azkaban/user-domain": ["libs/user-domain/src/index.ts"],
"@azkaban/user-infrastructure": [
"libs/user-infrastructure/src/index.ts"
],
"@azkaban/warcraft-domain": ["libs/warcraft-domain/src/index.ts"],
"@azkaban/warcraft-infrastructure": [
"libs/warcraft-infrastructure/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}