We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1575565 commit 6cccfd6Copy full SHA for 6cccfd6
tsconfig.json
@@ -1,6 +1,19 @@
1
{
2
- "extends": "@tsconfig/recommended/tsconfig.json",
3
"compilerOptions": {
4
- "jsx": "preserve"
5
- }
+ "target":"ES5",
+ "lib": ["DOM", "DOM.Iterable", "ESNext"],
+ "allowJs": true,
6
+ "skipLibCheck": true,
7
+ "esModuleInterop": true,
8
+ "allowSyntheticDefaultImports": true,
9
+ "strict": true,
10
+ "forceConsistentCasingInFileNames": true,
11
+ "noFallthroughCasesInSwitch": true,
12
+ "module": "ESNext",
13
+ "moduleResolution": "node",
14
+ "resolveJsonModule": true,
15
+ "noEmit": true,
16
+ "jsx": "react-jsx"
17
+ },
18
+ "include": ["src"]
19
}
0 commit comments