This repository has been archived by the owner on Feb 19, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.base.json
111 lines (111 loc) · 2.87 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"compileOnSave": false,
"include": ["**/*.ts"],
"compilerOptions": {
"allowJs": false,
"alwaysStrict": false,
"baseUrl": ".",
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"lib": ["ESNext"],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": false,
"rootDir": ".",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": false,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"target": "ES2022",
"paths": {
"@digital-alchemy/automation-logic": [
"libs/automation-logic/src/index.ts"
],
"@digital-alchemy/boilerplate": ["libs/boilerplate/src/index.ts"],
"@digital-alchemy/gotify": ["libs/gotify/src/index.ts"],
"@digital-alchemy/home-assistant": ["libs/home-assistant/src/index.ts"],
"@digital-alchemy/mqtt": ["libs/mqtt/src/index.ts"],
"@digital-alchemy/pi-matrix-client": [
"libs/pi-matrix-client/src/index.ts"
],
"@digital-alchemy/render-utils": ["libs/render-utils/src/index.ts"],
"@digital-alchemy/rgb-matrix": ["libs/rgb-matrix/src/index.ts"],
"@digital-alchemy/server": ["libs/server/src/index.ts"],
"@digital-alchemy/testing": ["libs/testing/src/index.ts"],
"@digital-alchemy/tty": ["libs/tty/src/index.ts"],
"@digital-alchemy/utilities": ["libs/utilities/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp", "dist"],
"references": [
{
"path": "./apps/build-pipeline/tsconfig.json"
},
{
"path": "./apps/config-builder/tsconfig.json"
},
{
"path": "./apps/entity-creation/tsconfig.json"
},
{
"path": "./apps/hass-cli/tsconfig.json"
},
{
"path": "./apps/hass-type-generate/tsconfig.json"
},
{
"path": "./apps/log-formatter/tsconfig.json"
},
{
"path": "./apps/pi-matrix/tsconfig.json"
},
{
"path": "./apps/sampler-app/tsconfig.json"
},
{
"path": "./apps/scene-manager/tsconfig.json"
},
{
"path": "./libs/automation-logic/tsconfig.json"
},
{
"path": "./libs/boilerplate/tsconfig.json"
},
{
"path": "./libs/gotify/tsconfig.json"
},
{
"path": "./libs/home-assistant/tsconfig.json"
},
{
"path": "./libs/mqtt/tsconfig.json"
},
{
"path": "./libs/pi-matrix-client/tsconfig.json"
},
{
"path": "./libs/render-utils/tsconfig.json"
},
{
"path": "./libs/rgb-matrix/tsconfig.json"
},
{
"path": "./libs/server/tsconfig.json"
},
{
"path": "./libs/testing/tsconfig.json"
},
{
"path": "./libs/tty/tsconfig.json"
},
{
"path": "./libs/utilities/tsconfig.json"
}
]
}