Skip to content

Commit

Permalink
chore: correct babelrc config
Browse files Browse the repository at this point in the history
  • Loading branch information
yuche committed Sep 3, 2017
1 parent dfb9bf8 commit fc1c8cf
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions .babelrc
@@ -1,14 +1,23 @@
{
"presets": [
["es2015", {
"modules": false,
"loose": true
}],
[
"es2015",
{
"modules": false,
"loose": true
}
],
"stage-0"
],
"plugins": [
"transform-es3-member-expression-literals",
"transform-es3-property-literals"
"transform-es3-property-literals",
[
"transform-react-jsx",
{
"pragma": "h"
}
]
],
"comments": false
}
}

0 comments on commit fc1c8cf

Please sign in to comment.