babel-preset-es2015-riot
v1.1.0
Published
The default riot babel preset
Downloads
1,895
Readme
The default riot babel preset
This preset includes all the default babel es2015 plugins
Allowing the use of the es2015 modules
also in any riot tag
Installation
$ npm install babel-preset-es2015-riot --save-dev
Usage
Add a .babelrc
file in the root of your project
{
"presets": [ "es2015-riot" ]
}
If you want to use the babel helpers you must change the .babelrc
file in this way:
{
"presets": [ "es2015-riot" ],
"plugins": [ "external-helpers-2" ]
}