KCM
KCM
When the dual build is CJS * Replace `import.meta.url` with something like `require('url').pathToFileURL(__filename).toString()`. When the dual build is ESM * Repalce `__filename` with `import.meta.filename` or `fileURLToPath(import.meta.url)`. The latter option allows...
No need to keep both dependencies around. Also look into transforming the specifiers before compiling with `tsc`. I think that will cause `tsc` to complain about not being able to...
Add an `--exports` option that will generate package.json `exports` based on the build output. It should not support any additional configuration but instead assume basic defaults (if it requires a...
It would be great to have AST nodes with a `loc` and/or `range` fields. Here's some context: https://github.com/oxc-project/oxc/issues/10139#issuecomment-2783567533 Possibly dependent upon https://github.com/oxc-project/oxc/issues/9705 being completed first.
### Is there an existing issue for this? - [x] I have searched the existing issues and my issue is unique - [x] My issue appears in the command-line and...