-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 930 Bytes
/
Copy pathtsconfig.json
File metadata and controls
27 lines (27 loc) · 930 Bytes
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
{
"compilerOptions": {
"strict": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"noUncheckedIndexedAccess": true,
"paths": {
"@homie/core": ["./packages/core/src"],
"@homie/config": ["./packages/config/src"],
"@homie/observability": ["./packages/observability/src"],
"@homie/persistence": ["./packages/persistence/src"],
"@homie/gateway": ["./packages/gateway/src"],
"@homie/telegram": ["./packages/channels/telegram/src"],
"@homie/providers": ["./packages/providers/src"],
"@homie/agent": ["./packages/agent/src"]
}
},
"include": ["src/**/*.ts", "packages/*/src/**/*.ts", "packages/channels/*/src/**/*.ts"]
}