Skip to content

Commit

Permalink
chore: babel loose on destructuring, for-of, spread (fix #1004)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyuwoo.choi authored and seonim-ryu committed Jan 6, 2020
1 parent 5d3709a commit d303c7c
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions apps/editor/.babelrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
{
"presets": ["es2015"],
"plugins": [[
"transform-es2015-destructuring", {"loose": true}
], [
"transform-es2015-for-of", {"loose": true}
], [
"transform-es2015-spread", {"loose": true}
]],
"env": {
"modules": false,
"loose": true,
"coverage": {
"plugins": ["istanbul"]
}
"modules": false,
"loose": true,
"coverage": {
"plugins": ["istanbul"]
}
}
}

0 comments on commit d303c7c

Please sign in to comment.