Skip to content

Commit 6cccfd6

Browse files
swap recommended config for manual setup
1 parent 1575565 commit 6cccfd6

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

tsconfig.json

+16-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
{
2-
"extends": "@tsconfig/recommended/tsconfig.json",
32
"compilerOptions": {
4-
"jsx": "preserve"
5-
}
3+
"target":"ES5",
4+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
5+
"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"]
619
}

0 commit comments

Comments
 (0)