-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2.3.8 - downgrade to core-js@2 until zloirock/core-js#513 is sorted
- Loading branch information
klarstrup
committed
Mar 27, 2019
1 parent
46c6537
commit 3fd5252
Showing
5 changed files
with
155 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
const presets = [ | ||
[ | ||
'@babel/preset-env', | ||
{ | ||
targets: { | ||
browsers: ['> 3%', 'IE 11'], | ||
node: 8 | ||
}, | ||
corejs: 3, | ||
useBuiltIns: 'usage' | ||
} | ||
] | ||
]; | ||
|
||
module.exports = { | ||
presets | ||
presets: [ | ||
[ | ||
'@babel/preset-env', | ||
{ | ||
targets: { | ||
browsers: ['> 3%', 'IE 11'], | ||
node: 8 | ||
}, | ||
corejs: 2, | ||
useBuiltIns: 'usage', | ||
exclude: ['transform-typeof-symbol'] | ||
} | ||
] | ||
] | ||
}; |
Oops, something went wrong.