foundkey-js: fix build errors #135
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/foundkeyjs-build-errors"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The use of
"moduleResolution": "Node16"
is to make TS use the samemodule resolution as Node does when using ESM modules.
reconnecting-websocket
's TS definition files were copied over butwrapped in a
declare module
block to make TS properly acceptusing the default import directly without using
.default
.I also decided to look into
autobind-decorator
's source code andfigured that I could use the
boundMethod
annotation directly insteadof using the
autobind
default export.a955333919
todde6f5eb55