Skip to content

Commit

Permalink
Remove skipLibCheck from tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Jun 6, 2023
1 parent a24e835 commit c31e10a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"include": ["**/*.js"],
"exclude": ["coverage/", "node_modules/"],
"compilerOptions": {
"customConditions": ["development"],
"checkJs": true,
"declaration": true,
"emitDeclarationOnly": true,
Expand All @@ -10,8 +9,9 @@
"lib": ["es2020"],
"module": "node16",
"newLine": "lf",
"skipLibCheck": true,
"strict": true,
"target": "es2020"
}
},
"exclude": ["coverage/", "node_modules/"],
"include": ["**/*.js"]
}

0 comments on commit c31e10a

Please sign in to comment.