-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.base.json
65 lines (65 loc) · 2.09 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
{
"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": {
"@service-bus-browser/connections-flow": [
"libs/connections/flow/src/index.ts"
],
"@service-bus-browser/connections-store": [
"libs/connections/store/src/index.ts"
],
"@service-bus-browser/logs-components": [
"libs/logs/components/src/index.ts"
],
"@service-bus-browser/logs-contracts": [
"libs/logs/contracts/src/index.ts"
],
"@service-bus-browser/logs-services": ["libs/logs/services/src/index.ts"],
"@service-bus-browser/logs-store": ["libs/logs/store/src/index.ts"],
"@service-bus-browser/service-bus-angular-providers": [
"libs/service-bus/angular-providers/src/index.ts"
],
"@service-bus-browser/service-bus-clients": [
"libs/service-bus/clients/src/index.ts"
],
"@service-bus-browser/service-bus-contracts": [
"libs/service-bus/contracts/src/index.ts"
],
"@service-bus-browser/service-bus-electron-client": [
"libs/service-bus/electron-client/src/index.ts"
],
"@service-bus-browser/service-bus-server": [
"libs/service-bus/server/src/index.ts"
],
"@service-bus-browser/shared-components": [
"libs/shared/components/src/index.ts"
],
"@service-bus-browser/shared-contracts": [
"libs/shared/contracts/src/index.ts"
],
"@service-bus-browser/topology-components": [
"libs/topology/components/src/index.ts"
],
"@service-bus-browser/topology-contracts": [
"libs/topology/contracts/src/index.ts"
],
"@service-bus-browser/topology-store": [
"libs/topology/store/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}