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