2.3.0 • Published 9 months ago

@rhino.fi/babel-plugin-transform-import-meta v2.3.0

Weekly downloads
-
License
BSD
Repository
github
Last release
9 months ago

babel-plugin-transform-import-meta

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

console.log(import.meta.url);

With this

console.log(require('url').pathToFileURL(__filename).toString());

Installation

Install this package

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

and add it to your babel plugins in babel.config.json

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

Settings

ES6 modules

It's possible to use ES6 modules for the output. Useful to delegate module transformation to other plugins.

{
  "plugins": [
    ["babel-plugin-transform-import-meta", { "module": "ES6" }]
  ]
}

Credits

Based on a previous project "babel-plugin-import-meta" by The Polymer Authors

2.3.0

9 months ago