Skip to content

Commit

Permalink
Add skip lib check when building
Browse files Browse the repository at this point in the history
  • Loading branch information
csandman committed Jun 29, 2024
1 parent af050ba commit 68cd787
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,19 @@
"compilerOptions": {
"target": "es5",
"module": "esnext",
"moduleResolution": "bundler",
"lib": ["dom", "esnext"],
"declaration": true,
"sourceMap": true,
"moduleResolution": "node10",
"strict": true,
"isolatedModules": true,
"noFallthroughCasesInSwitch": true,
"jsx": "react-jsx",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"forceConsistentCasingInFileNames": true
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"include": ["src"],
"exclude": ["node_modules"]
Expand Down

0 comments on commit 68cd787

Please sign in to comment.