-
Notifications
You must be signed in to change notification settings - Fork 8
/
tsconfig.base.json
83 lines (83 loc) · 3.3 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"compileOnSave": false,
"compilerOptions": {
"sourceMap": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "ESNext",
"module": "commonjs",
"lib": [
"dom",
"es6",
"dom.iterable",
"scripthost",
"es5",
"es7",
"es2017",
"ESNext",
"esnext.intl",
"es2017.intl",
"es2018.intl"
],
"skipLibCheck": true,
"baseUrl": "./",
"paths": {
"App/*": ["./apps/mudita-center/src/*"],
"Core/*": ["./libs/core/*"],
"E2E/*": ["./apps/mudita-center-e2e/src/*"],
"Libs/*": ["./libs/*"],
"Root/*": ["./*"],
"active-device-registry/feature": [
"libs/active-device-registry/feature/src/index.ts"
],
"active-device-registry/models": [
"libs/active-device-registry/models/src/index.ts"
],
"core-device/feature": ["libs/core-device/feature/src/index.ts"],
"core-device/models": ["libs/core-device/models/src/index.ts"],
"device-manager/feature": ["libs/device-manager/feature/src/index.ts"],
"device-manager/models": ["libs/device-manager/models/src/index.ts"],
"device-protocol/feature": ["libs/device-protocol/feature/src/index.ts"],
"device-protocol/models": ["libs/device-protocol/models/src/index.ts"],
"device/adapters": ["libs/device/adapters/src/index.ts"],
"device/feature": ["libs/device/feature/src/index.ts"],
"device/models": ["libs/device/models/src/index.ts"],
"e2e-mock-client": ["libs/e2e-mock/client/src/index.ts"],
"e2e-mock-responses": ["libs/e2e-mock/responses/src/index.ts"],
"e2e-mock-server": ["libs/e2e-mock/server/src/index.ts"],
"e2e-test-ids": ["libs/e2e-test-ids/src/index.ts"],
"electron/application-updater": [
"libs/electron/application-updater/src/index.ts"
],
"generic-view/feature": ["libs/generic-view/feature/src/index.ts"],
"generic-view/models": ["libs/generic-view/models/src/index.ts"],
"generic-view/store": ["libs/generic-view/store/src/index.ts"],
"generic-view/theme": ["libs/generic-view/theme/src/index.ts"],
"generic-view/ui": ["libs/generic-view/ui/src/index.ts"],
"generic-view/utils": ["libs/generic-view/utils/src/index.ts"],
"generic-view/views": ["libs/generic-view/views/src/index.ts"],
"help/feature": ["libs/help/feature/src/index.ts"],
"help/models": ["libs/help/models/src/index.ts"],
"help/store": ["libs/help/store/src/index.ts"],
"help/ui": ["libs/help/ui/src/index.ts"],
"msc-flash-harmony": ["libs/msc-flash/msc-flash-harmony/src/index.ts"],
"shared/app-state": ["libs/shared/app-state/src/index.ts"],
"shared/feature": ["libs/shared/feature/src/index.ts"],
"shared/http-client": ["libs/shared/http-client/src/index.ts"],
"shared/utils": ["libs/shared/utils/src/index.ts"],
"system-utils/feature": ["libs/system-utils/feature/src/index.ts"],
"system-utils/models": ["libs/system-utils/models/src/index.ts"]
},
"jsx": "react",
"esModuleInterop": true
},
"exclude": [
"node_modules",
"./apps/mudita-center/node_modules",
"./apps/mudita-center/dist",
"./apps/mudita-center/__mocks__",
"./libs/generic-view/ui/styled.d.ts",
"./libs/help/ui/styled.d.ts"
]
}