Skip to content

Commit

Permalink
Fix TS Config
Browse files Browse the repository at this point in the history
  • Loading branch information
djhi committed Feb 4, 2021
1 parent c7644ed commit 2b194db
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion examples/simple/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@
"rootDir": "src",
"declaration": true,
"allowJs": false,
"jsx": "react"
"jsx": "react",
"lib": [
"es2017",
"dom"
],
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"exclude": ["**/*.spec.ts", "**/*.spec.tsx", "**/*.spec.js"],
"include": ["src"]
Expand Down

0 comments on commit 2b194db

Please sign in to comment.