Skip to content

Commit

Permalink
feat: use babel loose mode for faster/smaller code
Browse files Browse the repository at this point in the history
  • Loading branch information
3cp committed Aug 25, 2018
1 parent 5e614c7 commit feb81cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"env": {
"test": {
"presets": ["env", "stage-1"]
"presets": [["env", {"loose": true}], "stage-1"]
},
"development": {
"presets": [["env", {"modules": false}], "stage-1"],
"presets": [["env", {"loose": true, "modules": false}], "stage-1"],
"plugins": ["external-helpers"]
}
}
Expand Down

0 comments on commit feb81cf

Please sign in to comment.