Skip to content

Commit

Permalink
chore(tsconfig): the lmdb module does not properly export types in it…
Browse files Browse the repository at this point in the history
…s named exports, so we are stuck telling tyepscript where to find them manually. This can be removed when their library is updated.
  • Loading branch information
dtfiedler committed Jan 26, 2024
1 parent 683522d commit b6f702d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true
"skipLibCheck": true,
"paths": {
"warp-contracts-lmdb": ["./node_modules/warp-contracts-lmdb/lib/types/index.d.ts"]
}
},
"ts-node": {
"swc": true
Expand Down

0 comments on commit b6f702d

Please sign in to comment.