Update for Babel 6 changes

This commit is contained in:
Jonathan Cremin 2015-11-22 12:37:09 +00:00
parent fe6e704c74
commit 0be6450250
4 changed files with 62 additions and 1046 deletions

25
.babelrc Normal file
View file

@ -0,0 +1,25 @@
{
"plugins": [
"syntax-jsx",
"transform-react-jsx",
"transform-es2015-arrow-functions",
"transform-es2015-block-scoped-functions",
"transform-es2015-block-scoping",
"transform-es2015-classes",
"transform-es2015-computed-properties",
"transform-es2015-constants",
"transform-es2015-destructuring",
"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"
]
}