I'm running Snowpack and I have a Typescript package (hosted on Github packages) that I want to pull in via
import SomeClass from '@myRepo/lib'
however I'm getting the error
"/_snowpack/pkg/@myRepo.SomeClass.ts" is not a constructor
When I copy-paste the class to a local file and import it using local imports (like below), it works.
import SomeClass from './lib'