We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51fdc30 commit 80c7a7eCopy full SHA for 80c7a7e
1 file changed
tsconfig.json
@@ -1,20 +1,18 @@
1
{
2
"compilerOptions": {
3
- "resolveJsonModule": true,
4
- "esModuleInterop": true,
5
- "noEmit": true,
6
-
7
"target": "ES6",
8
"module": "ESNext",
9
"moduleResolution": "node",
10
- "strict": true,
+ "resolveJsonModule": true,
+ "esModuleInterop": true,
11
"allowSyntheticDefaultImports": true,
12
"forceConsistentCasingInFileNames": true,
13
"skipLibCheck": true,
14
+ "strict": true,
+ "noEmit": true,
15
"jsx": "react-jsx",
16
"lib": ["ESNext", "DOM"],
17
"types": ["node", "react", "react-dom"]
18
},
19
- "include": ["scripts", "packages/**/*"]
+ "include": ["scripts", "packages/**/*", "demo/**/*"]
20
}
0 commit comments