ES2015 preset
Only compiles ES2015 to ES5
If you want to stay up to date, use the env preset
This preset includes the following plugins:
- check-es2015-constants
- transform-es2015-arrow-functions
- transform-es2015-block-scoped-functions
- transform-es2015-block-scoping
- transform-es2015-classes
- transform-es2015-computed-properties
- transform-es2015-destructuring
- transform-es2015-duplicate-keys
- transform-es2015-for-of
- transform-es2015-function-name
- transform-es2015-literals
- transform-es2015-modules-commonjs
- transform-es2015-object-super
- transform-es2015-parameters
- transform-es2015-shorthand-properties
- transform-es2015-spread
- transform-es2015-sticky-regex
- transform-es2015-template-literals
- transform-es2015-typeof-symbol
- transform-es2015-unicode-regex
- transform-regenerator
Basic Setup (with the CLI)
You can also check out the React Getting Started page
For more info, check out the setup page on the cli and the usage docs.
Install the CLI and this preset
npm install --save-dev babel-cli babel-preset-es2015
Make a .babelrc config file with the preset
echo '{ "presets": ["es2015"] }' > .babelrc
Create a file to run on
echo 'console.log([1, 2, 3].map(n => n + 1))' > index.js
Run it
./node_modules/.bin/babel index.js
Install
npm install --save-dev babel-preset-es2015
Usage
Via .babelrc
(Recommended)
.babelrc
{ "presets": ["es2015"] }
Via CLI
babel script.js --presets es2015
Via Node API
require("babel-core").transform("code", { presets: ["es2015"] });
Options
loose
boolean
, 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.
spec
boolean
, defaults to false
.
Enable “spec” transformations for any plugins in this preset that allow them.
© 2018 Sebastian McKenzie
Licensed under the MIT License.
http://babeljs.io/docs/plugins/preset-es2015/