Skip to content

Commit

Permalink
bugfixes set to true in babel configs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannestegner committed Jun 22, 2020
1 parent 7d22c36 commit 5b0b6e6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{
"presets": [
"@jitesoft/main"
[
"@jitesoft/main",
{
"useBuiltIns": "entry",
"bugfixes": true
}
]
]
}
3 changes: 2 additions & 1 deletion src/node/.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"@jitesoft/main",
{
"mode": "node",
"useBuiltIns": "entry"
"useBuiltIns": "entry",
"bugfixes": true
}
]
]
Expand Down
3 changes: 2 additions & 1 deletion src/web/.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"@jitesoft/main",
{
"mode": "web",
"useBuiltIns": "entry"
"useBuiltIns": "entry",
"bugfixes": true
}
]
]
Expand Down

0 comments on commit 5b0b6e6

Please sign in to comment.