Add corejs config to allow polyfilling of Symbol for IE11 (#17)

This commit is contained in:
Alasdair Smith 2021-01-22 12:12:07 +00:00 committed by GitHub
parent f1ed04cc58
commit 1e1d493556

View file

@ -1,7 +1,9 @@
{ {
"presets": [ "presets": [
["@babel/env", { ["@babel/env", {
"targets": ["last 1 year", "ie 11", "firefox esr"] "targets": ["last 1 year", "ie 11", "firefox esr"],
"useBuiltIns": "usage",
"corejs": { "version": 3 }
}] }]
] ]
} }