babel-plugin-remove-import-meta
v1.0.0
Published
Remove import.meta for nodejs environments
Downloads
29
Readme
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"
]
}