Skip to content

Commit

Permalink
chore: add skipLibCheck to tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
rygine committed Feb 26, 2024
1 parent c7b57c4 commit 74cc692
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"compilerOptions": {
"target": "es2021",
"lib": ["dom"],
"sourceMap": true,
"noEmit": true,
"downlevelIteration": true,
"strict": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["dom"],
"moduleResolution": "bundler",
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "es2021",
"types": ["vitest/globals"]
},
"include": ["src/**/*", "bench/**/*", "build/**/*", "test/**/*"]
Expand Down

0 comments on commit 74cc692

Please sign in to comment.