Skip to content

Commit 9a2f882

Browse files
committed
Fix tsc checking node_modules
1 parent 565bb40 commit 9a2f882

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"compilerOptions": {
3+
// We don't want to check node_modules
4+
"skipLibCheck": true,
35
// @TODO: perhaps "emitDeclarationOnly" should be used here (build fails with it), need to
46
// investigate further https://www.typescriptlang.org/tsconfig#emitDeclarationOnly
57
// probably need to update rollup and its config
@@ -22,7 +24,7 @@
2224
"target": "es2022",
2325
"lib": ["ESNext", "dom"],
2426
"strict": true,
25-
"noImplicitReturns": true,
27+
"noImplicitReturns": true
2628
},
27-
"include": ["src"],
29+
"include": ["src"]
2830
}

0 commit comments

Comments
 (0)