forked from schaze/node-homie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (32 loc) · 908 Bytes
/
tsconfig.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
{
"extends": "@tsconfig/node14/tsconfig.json",
"compilerOptions": {
"sourceMap": true,
"declaration": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node"
},
"include": [
"./src/**/*.ts"
],
"paths": {
"node-homie": ["./src/index"],
"node-homie/homie-base": ["./src/homie-base/index"],
"node-homie/misc": ["./src/misc/index"],
"node-homie/model": ["./src/model/index"],
"node-homie/mqtt": ["./src/mqtt/index"],
"node-homie/rx": ["./src/rx/index"],
"node-homie/smarthome": ["./src/smarthome/index"],
"node-homie/util": ["./src/util/index"]
},
"exclude": [
"node_modules"
]
}