"Module 'hono' declares 'Hono' locally, but it is not exported"
"Module 'hono' declares 'Hono' locally, but it is not exported"
when using
moduleResolution
moduleResolution
set to
bundler
bundler
?
The only configuration I've found to work is strict ESM: * "module": "nodenext" * "moduleResolution": "nodenext" * "type": "module" in package.json This is problematic since I'm working with an large existing codebase that omits file extensions and automatic index resolution.
What is the feature you are proposing? Hi Hono team, I'd like like incrementally migrate a large Express project running on Node.js to Hono. We use Tsup as our bundler and cannot switch to pure...