forked from VictorHAS/mqtt-react-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 811 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 811 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
{
"compilerOptions": {
"noEmit": true,
"module": "ES2015",
"target": "ES2019",
"lib": ["es6", "dom", "ES2016", "ES2017", "ES2020", "ESNext"],
"sourceMap": true,
"allowJs": false,
"jsx": "react",
"declaration": true,
"declarationDir": "dist",
"moduleResolution": "Node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": false,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"baseUrl": ".",
"outDir": "./dist"
},
"include": ["lib/*"],
"exclude": ["node_modules", "build", "dist", "__tests__"]
}