1.0.0 • Published 1 year ago

babel-plugin-remove-import-meta v1.0.0

Weekly downloads
-
License
BSD
Repository
github
Last release
1 year ago

babel-plugin-remove-import-meta

Remove import.meta for nodejs environments. This plugin replaces any occurrence of import.meta.url.

console.log(import.meta.url);

With this

console.log("");

Installation

Install this package

npm install --save-dev babel-plugin-remove-import-meta

And configure it

{
  "plugins": [
    "babel-plugin-remove-import-meta"
  ]
}

Credits

Based on javiertury/babel-plugin-transform-import-meta

1.0.0

1 year ago