babel-plugin-transform-es2015-modules-amd

6.24.1 • Public • Published

babel-plugin-transform-es2015-modules-amd

This plugin transforms ES2015 modules to Asynchronous Module Definition (AMD).

Example

In

export default 42;

Out

define(["exports"], function (exports) {
  "use strict";
 
  Object.defineProperty(exports, "__esModule", {
    value: true
  });
 
  exports.default = 42;
});

Installation

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

Usage

Via .babelrc (Recommended)

.babelrc

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

Via CLI

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

Via Node API

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

Options

See options for babel-plugin-transform-es2015-commonjs.

Readme

Keywords

Package Sidebar

Install

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

Weekly Downloads

1,100,960

Version

6.24.1

License

MIT

Last publish

Collaborators

  • hzoo
  • loganfsmyth
  • existentialism