We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 565bb40 commit 9a2f882Copy full SHA for 9a2f882
tsconfig.json
@@ -1,5 +1,7 @@
1
{
2
"compilerOptions": {
3
+ // We don't want to check node_modules
4
+ "skipLibCheck": true,
5
// @TODO: perhaps "emitDeclarationOnly" should be used here (build fails with it), need to
6
// investigate further https://www.typescriptlang.org/tsconfig#emitDeclarationOnly
7
// probably need to update rollup and its config
@@ -22,7 +24,7 @@
22
24
"target": "es2022",
23
25
"lib": ["ESNext", "dom"],
26
"strict": true,
- "noImplicitReturns": true,
27
+ "noImplicitReturns": true
28
},
- "include": ["src"],
29
+ "include": ["src"]
30
}
0 commit comments