Skip to content
This repository was archived by the owner on Jan 5, 2023. It is now read-only.

Commit 900b578

Browse files
committed
Remove useBuiltIns option from babelrc
While useBuiltIns is set to "usage" any project that isn't using the same version of corejs will break due to changes in paths and file names.
1 parent 5540ab1 commit 900b578

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.babelrc

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
22
"presets": [
3-
4-
["@babel/preset-env", {
5-
"shippedProposals": true, "useBuiltIns": "usage"
6-
}],
7-
"@babel/preset-react",
8-
"@babel/preset-flow"
3+
[
4+
"@babel/preset-env",
5+
{
6+
"shippedProposals": true
7+
}
8+
],
9+
"@babel/preset-react",
10+
"@babel/preset-flow"
911
]
1012
}

0 commit comments

Comments
 (0)