-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathtsconfig.json
More file actions
39 lines (34 loc) · 952 Bytes
/
tsconfig.json
File metadata and controls
39 lines (34 loc) · 952 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
28
29
30
31
32
33
34
35
36
37
38
39
{
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
// Output
"noEmit": true,
"sourceMap": true,
"inlineSources": true,
"declaration": true,
"composite": true,
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"newLine": "lf",
// Module Resolution
"target": "ES2022",
"module": "CommonJS",
"moduleResolution": "Node",
"resolveJsonModule": true,
"esModuleInterop": true,
// Type Checking - STRICT
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowJs": false,
"checkJs": false,
"rootDir": "./src",
// Decorators
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// Types
"types": ["node", "@iobroker/adapter-core", "@iobroker/types", "vitest/globals"],
"lib": ["ESNext", "DOM", "DOM.Iterable"]
},
"include": ["src/**/*.ts", "src/**/*.json"],
"exclude": ["node_modules", "src/www"]
}