babel-plugin-transform-es3-helper-modules
v6.1.1
Published
Externalize helper functions to babel-helper-modules-es3
Readme
babel-plugin-transform-es3-helper-modules
Externalize references to helpers using babel-helper-modules-es3.
If you want to externalize builtins too via core-js's library, see the official plugin babel-plugin-transform-runtime.
Installation
$ npm install babel-plugin-transform-es3-helper-modules babel-helper-modules-es3Usage
Remember to also install babel-helper-modules-es3. when using the transpiled code.
Via .babelrc (Recommended)
.babelrc
{
"plugins": ["transform-es3-helper-modules"]
}Via CLI
$ babel --plugins transform-es3-helper-modules script.jsVia Node API
require("babel-core").transform("code", {
plugins: ["transform-es3-helper-modules"]
});