-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 837 Bytes
/
tsconfig.json
File metadata and controls
32 lines (32 loc) · 837 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
{
// Used to type-check in the editor
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"moduleResolution": "node",
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"allowJs": true,
"checkJs": false,
"noEmit": false,
"declaration": true,
"outDir": "./build",
"sourceMap": true,
"inlineSources": true,
"sourceRoot": "./src",
"noImplicitAny": true,
"skipLibCheck": true,
"lib": ["es2018", "DOM"],
"jsx": "react",
"types": ["@iobroker/types"]
},
"include": [
"./src/**/*.js",
"./src/**/*.jsx",
"./src/**/*.ts",
"./src/**/*.tsx",
"./src/**/*.d.ts"
],
"exclude": ["gulpfile.js"]
}