@babel/plugin-transform-modules-amd
NOTE: This plugin is included in
@babel/preset-env
under themodules
option
This plugin transforms ECMAScript modules to AMD. Note that only the syntax of import/export statements (import "./mod.js"
) and import expressions (import('./mod.js')
) is transformed, as Babel is unaware of the different resolution algorithms between implementations of ECMAScript modules and 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-modules-amd
Usage
With a configuration file (Recommended)
{
"plugins": ["@babel/plugin-transform-modules-amd"]
}
Via CLI
babel --plugins @babel/plugin-transform-modules-amd script.js
Via Node API
require("@babel/core").transformSync("code", {
plugins: ["@babel/plugin-transform-modules-amd"],
});
Options
See options for @babel/plugin-transform-modules-commonjs
.