Pooya Parsa
Pooya Parsa
Yes, nitro does not uses `module` field for external dependencies because it is not standard and runtimes (Node.js, Deno, Bun) also do not use or recognize `module` field`, if we...
We can configure nitro (rollup) to force bundle all dependencies and without externals and also use `module` field (which is valid only for ESM-bundled deps, therefore externals won't work because...
Even though recent versions of Node.js allow (non async) require(esm), technically any require statement is resolved with "require" condition unlees using dynamic import() to force using "module" condition (exports field...
For detecting docker from the main subpath, we need to use filesystem API which reduces platform agnostic nature of std-env. We might port it as a subpath export though like...
PR welcome 👍🏼
jiti v2 introduces new `jiti.import()` syntax that prefers native ESM imports. If you have encountered any issues with v2 still, please ping to reopen or feel free to open new...
Latest v2 will allow `new HTTPError({ body: {} })` to add more keys to top level of JSON response object.
Seems fixed (although docs tooling is still sadly really unreliable) -- thanks for report! 
Thanks. Since wsl is not exactly a container (it is VM with dedicated kernel), i would suggest to use `/ws` and `/docker` subpaths. I would love to explore idea of...
(sorry for late review on this -- it is definitely under my radar)