Skip to content

Commit

Permalink
chore: Skip lib check for browser adapter. (#701)
Browse files Browse the repository at this point in the history
There are some dependencies which have a conflict in type definitions.
This only affects the adapter for the contract tests, and doesn't affect
runtime, so I am disabling lib checks on that project for the moment.
I'll also try to track down what changed.
  • Loading branch information
kinyoklion authored Dec 4, 2024
1 parent 7266baa commit 7a93a45
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/sdk/browser/contract-tests/adapter/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"strict": true,
"moduleResolution": "node",
"outDir": "dist",
"sourceMap": true
"sourceMap": true,
"skipLibCheck": true
},
"lib": ["ES6"],
"exclude": ["**/*.test.ts", "dist", "node_modules"]
Expand Down

0 comments on commit 7a93a45

Please sign in to comment.