Open javiertury opened 2 years ago
Having the same issue - cannot use the library because it throws the above error
I've tried fixing this in my fork. It would be great to know if it works. If someone can verify I'll open a PR. It's temporarily published on npm (scoped)
@cuppachino
I've tested this on my work SvelteKit TS 5.0 application and it's working perfectly.
I'd previously had to set ssr: { format: 'cjs' }
in vite.config.ts
because of this one issue. I no longer have to, plus it's playing nice with Typescript 5.0. Bravo!
Using this library with vite and pre-render, produces the following error:
The reason is that both CommonJS and ESM exports are using the
.js
extension. Ifpackage.json#type
iscommonjs
(default),.js
can be used for CommonJS but.mjs
should be used for ESM. And ifpackage.json#type
ismodule
,.js
can be used for ESM output, but.cjs
should be used for CommonJS.I think
"type": "module"
is better because the.js
extension can be used for NodeJS modules and browsers alike, making mandatory.cjs
only for CommonJS files.