Skip to content

Commit bcd73ae

Browse files
committed
Fix TS Config
1 parent c26e553 commit bcd73ae

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

examples/simple/tsconfig.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@
55
"rootDir": "src",
66
"declaration": true,
77
"allowJs": false,
8-
"jsx": "react"
8+
"jsx": "react",
9+
"lib": [
10+
"es2017",
11+
"dom"
12+
],
13+
"moduleResolution": "node",
14+
"allowSyntheticDefaultImports": true,
15+
"esModuleInterop": true,
16+
"skipLibCheck": true
917
},
1018
"exclude": ["**/*.spec.ts", "**/*.spec.tsx", "**/*.spec.js"],
1119
"include": ["src"]

0 commit comments

Comments
 (0)