-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
47 lines (47 loc) · 1.36 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "nodenext", // Required to support exports on package.json
"composite": true, // For linking this package from matter-node.js
// Local dev compilation checks
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
"noImplicitOverride": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"strict": true,
"outDir": "dist",
"rootDir": "src",
"removeComments": true,
"skipLibCheck": true,
"sourceMap": true,
"target": "ES2022",
"lib": [
"es2022",
"esnext.asynciterable",
"dom",
"dom.iterable"
],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"preserveConstEnums": true,
"strictPropertyInitialization": false
},
"include": [
"src/nodes/hub/*.ts",
"src/nodes/server/*.ts",
"src/nodes/sensors/*.ts",
"src/nodes/light/*.ts",
"src/nodes/closures/*.ts",
"src/nodes/base/*.ts",
"src/nodes/hvac/*.ts",
"src/nodes/actuator/*.ts",
"src/nodes/converters/*.ts"
],
"exclude": [
"node_modules",
"src/nodes/appliances",
"src/nodes/energy",
"src/behaviours/*.ts"
]
}