You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Importing from @tus/azure-store should be possible without any errors. E.g.: import { AzureStore } from '@tus/azure-store';
Actual behavior
The Typescript compiler errors out with Cannot find module '@tus/azure-store' or its corresponding type declarations. when adding an import from @tus/azure-store. Importing from @tus/azure-store/src is possible, but obviously a bad practice.
The text was updated successfully, but these errors were encountered:
Initial checklist
Steps to reproduce
Unlike all the other subpackages,
@tus/azure-store
doesn't contain the dist dir (see https://www.npmjs.com/package/@tus/azure-store?activeTab=code for example), which leads to import issues, at least in Typescript projects, but probably also in vanilla JS. I've prepared a minimal reproducible example here: https://github.com/fdebijl/tus-reproExpected behavior
Importing from
@tus/azure-store
should be possible without any errors. E.g.:import { AzureStore } from '@tus/azure-store';
Actual behavior
The Typescript compiler errors out with
Cannot find module '@tus/azure-store' or its corresponding type declarations.
when adding an import from@tus/azure-store
. Importing from@tus/azure-store/src
is possible, but obviously a bad practice.The text was updated successfully, but these errors were encountered: