Babel preset for all es2015 plugins.
$ gnpm install babel-preset-es2015
Babel preset for all es2015 plugins.
npm install --save-dev babel-preset-es2015
.babelrc (Recommended).babelrc
{
"presets": ["es2015"]
}
babel script.js --presets es2015
require("babel-core").transform("code", {
presets: ["es2015"]
});
looseboolean, defaults to false.
Enable "loose" transformations for any plugins in this preset that allow them.
modules"amd" | "umd" | "systemjs" | "commonjs" | false, defaults to "commonjs".
Enable transformation of ES6 module syntax to another module type.
Setting this to false will not transform modules.
specboolean, defaults to false.
Enable "spec" transformations for any plugins in this preset that allow them.
Copyright 2013 - present © cnpmjs.org | Home |