Last active
August 27, 2024 10:54
-
-
Save SparK-Cruz/e36ffc4db79ad2512efca12febaac460 to your computer and use it in GitHub Desktop.
Converts CommonJS format packages to ESModule format
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export * as default from "./index.js"; | |
export * from "./index.js"; | |
// 1. write your lib in CommonJS | |
// 2. add "module": "index.mjs" to you package.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment