voxeet / voxeet-sdk-web

The Dolby.io Communications SDK for Web.
https://www.npmjs.com/package/@voxeet/voxeet-web-sdk
Other
4 stars 2 forks source link

Missing types in typings #13

Closed XLeapZan closed 1 year ago

XLeapZan commented 1 year ago

Hi, we are trying make use of your type definitions (SDK 3.7.0).

We have compile errors using your typings, specifically we have issues with these files:

a) Some files have imports from @dolby-dvc which appears to be an internal project not available via npm,

b) Path issues / files do not exist

FabienLavocat commented 1 year ago

Hi @XLeapZan In you tsconfig.json, please set the flag skipDefaultLibCheck to true, so the compiler will not attempt to type check external libraries. See: https://www.typescriptlang.org/tsconfig#skipDefaultLibCheck

XLeapZan commented 1 year ago

Awesome. Thanks