Package Exports
- requirejs-babel-plugin
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (requirejs-babel-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
requirejs-babel-plugin
A better RequireJS plugin for babel
Installation
$ npm install requirejs-babel-pluginor
$ npm install -g bower
$ bower install requirejs-babel-pluginUsage
Add the paths to configuration:
paths: {
es6: 'your_file_path/es6',
babel: 'your_babel_file_path',
...
}Reference files via the es6! plugin name:
define(['es6!your_es6_module'], function(module) {
// ...
});When optimizing the source code with r.js, exclude the babel and plugin:
modules: [{
"name": "your_entry_file"
}],
stubModules: ['babel', 'es6'] // Stub out the modulesOptions
Babel 6.x
requirejs.config({
es6: {
fileExtension: '.js' // put in .jsx for JSX transformation
},
babel: {
presets: ['es2015'],
plugins: ['transform-es2015-modules-amd']
}
});
Babel 5.x
requirejs.config({
es6: {
fileExtension: '.js' // put in .jsx for JSX transformation
},
babel: {
blacklist: [],
nonStandard: true,
modules: 'amd'
}
});
See more: https://babeljs.io/docs/usage/options/
License
requirejs-babel-plugin is available under the terms of the MIT license.