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
Thanks for this template! The only issue I've run into while using it was that I couldn't use name imports from transpiled ESM code ("module": "esnext" in tsconfig.json). The error (seen by others in similar situations) was,
The requested module '...' is expected to be of type CommonJS, which does not support named exports. CommonJS modules can be imported by importing the default export.
Added, thank you for the reminder :) I think I was still on-the-fence about the exports landscape, but I think enough time has passed to make me feel like it's safe to just provide it as a default.
Thanks for this template! The only issue I've run into while using it was that I couldn't use name imports from transpiled ESM code (
"module": "esnext"
intsconfig.json
). The error (seen by others in similar situations) was,I've solved that in my package
local-iso-dt
by using conditional exports (diff).The text was updated successfully, but these errors were encountered: