babel-plugin-transform-es2015-modules-systemjs

6.24.1 • Public • Published

babel-plugin-transform-es2015-modules-systemjs

This plugin transforms ES2015 modules to SystemJS.

Example

In

export default 42;

Out

System.register([], function (_export, _context) {
  return {
    setters: [],
    execute: function () {
      _export("default", 42);
    }
  };
});

Installation

npm install --save-dev babel-plugin-transform-es2015-modules-systemjs

Usage

Via .babelrc (Recommended)

.babelrc

Without options:

{
  "plugins": ["transform-es2015-modules-systemjs"]
}

With options:

{
  "plugins": [
    ["transform-es2015-modules-systemjs", {
      // outputs SystemJS.register(...)
      "systemGlobal": "SystemJS"
    }]
  ]
}

Via CLI

babel --plugins transform-es2015-modules-systemjs script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-es2015-modules-systemjs"]
});

Readme

Keywords

Package Sidebar

Install

npm i babel-plugin-transform-es2015-modules-systemjs

Weekly Downloads

1,316,199

Version

6.24.1

License

MIT

Last publish

Collaborators

  • hzoo
  • loganfsmyth
  • existentialism