Closed lukepearce closed 1 year ago
what runtime version are you using?
Could you create a small reproducible repo, so I can try this?
what runtime version are you using?
Could you create a small reproducible repo, so I can try this?
I'm using node 16.13.1.
Will set one up 👍🏼
I was able to replicate in this repo even with the latest version of typescript.
Thanks, I'll put this on my to-do list for tomorrow morning
Adding "skipLibCheck": true,
to your tsconfig.json resolves this. this is just internal types missing, to the user (you) it exports the correct types.
I'll see what I need to fix internally :)
Adding
"skipLibCheck": true,
to your tsconfig.json resolves this. this is just internal types missing, to the user (you) it exports the correct types.I'll see what I need to fix internally :)
thanks for taking a look so quickly. builds successfully now 👌🏼 . I had no issue with the sdk itself, works great!
Great! I'll add your reproduction repo as example after I fixed it if you don't mind
Great! I'll add your reproduction repo as example after I fixed it if you don't mind
Yeah no problem. I can add the receiver example too if you like.
Hi,
I've used the sdk (latest version 0.3.6) in a node project that's running Typescript 3.7.0.
On build, I'm getting the following errors:
I'm importing both client and receiver as:
my
tsconfig.json
I've googled the issue but haven't found a clear resolution.