import-remap icon indicating copy to clipboard operation
import-remap copied to clipboard

Rewrite ES module import specifiers using an import-map.

Results 3 import-remap issues
Sort by recently updated
recently updated
newest added

I tried to use this tool to re-write my code to ESM and used `--to=.`. I don't know if I'm stupid or what but I pretty much used `--skip` in...

I’m using `import-remap` in a `"type": "module"` package, imported as: ```js import remap from 'import-remap' ``` However, `remap()` was mysteriously not doing anything. After some confused debugging, I discovered a...

## Summary Upgrade module resolution from the current exact-match-only approach to the [current standard of import maps resolution](https://html.spec.whatwg.org/#resolve-a-module-specifier), including trailing-slash specifiers. And, try to do this while sticking to the...