-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (25 loc) · 878 Bytes
/
tsconfig.json
File metadata and controls
27 lines (25 loc) · 878 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
// Root tsconfig to set the settings and power editor support for all TS files
{
"compileOnSave": true,
"compilerOptions": {
"noEmit": true,
"allowJs": true,
"checkJs": true,
"skipLibCheck": true, // Don't report errors in 3rd party definitions
"noEmitOnError": true,
"outDir": "./build",
"esModuleInterop": true,
"resolveJsonModule": true,
"module": "Node16",
"moduleResolution": "node16",
"sourceMap": true, // required for debug
"inlineSources": true, // required for debug
"strict": true,
"target": "es2022",
"inlineSourceMap": false,
"useUnknownInCatchVariables": false,
"types": ["node", "@iobroker/types"]
},
"include": ["src/**/*.*", "src/**/*.d.*"],
"exclude": ["build/**", "node_modules/**", "src-admin/**"]
}