-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
70 lines (70 loc) · 2.4 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@ticketforge/api-gateway/core": ["libs/api-gateway/core/src/index.ts"],
"@ticketforge/api-gateway/data-access": [
"libs/api-gateway/data-access/src/index.ts"
],
"@ticketforge/api-gateway/feature": [
"libs/api-gateway/feature/src/index.ts"
],
"@ticketforge/api-gateway/utils": ["libs/api-gateway/utils/src/index.ts"],
"@ticketforge/auth-service/core": ["libs/auth-service/core/src/index.ts"],
"@ticketforge/auth-service/data-access": [
"libs/auth-service/data-access/src/index.ts"
],
"@ticketforge/auth-service/feature": [
"libs/auth-service/feature/src/index.ts"
],
"@ticketforge/event-service/core": [
"libs/event-service/core/src/index.ts"
],
"@ticketforge/event-service/data-access": [
"libs/event-service/data-access/src/index.ts"
],
"@ticketforge/event-service/feature": [
"libs/event-service/feature/src/index.ts"
],
"@ticketforge/shared/api-interfaces": [
"libs/shared/api-interfaces/src/index.ts"
],
"@ticketforge/shared/message-broker": [
"libs/shared/message-broker/src/index.ts"
],
"@ticketforge/shared/network": ["libs/shared/network/src/index.ts"],
"@ticketforge/shared/utils": ["libs/shared/utils/src/index.ts"],
"@ticketforge/ticket-service/core": [
"libs/ticket-service/core/src/index.ts"
],
"@ticketforge/ticket-service/data-access": [
"libs/ticket-service/data-access/src/index.ts"
],
"@ticketforge/ticket-service/feature": [
"libs/ticket-service/feature/src/index.ts"
],
"@ticketforge/user-service/core": ["libs/user-service/core/src/index.ts"],
"@ticketforge/user-service/data-access": [
"libs/user-service/data-access/src/index.ts"
],
"@ticketforge/user-service/feature": [
"libs/user-service/feature/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}