Skip to content

Commit

Permalink
build: drop IE11 support
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Drop support for IE11
  • Loading branch information
ctavan committed Dec 2, 2021
1 parent d9dc37b commit 57b439a
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion babel.config.json
Expand Up @@ -6,7 +6,20 @@
"presets": [["@babel/preset-env", { "targets": { "node": "10" }, "modules": "commonjs" }]]
},
"esmBrowser": {
"presets": [["@babel/preset-env", { "modules": false }]]
"presets": [
[
"@babel/preset-env",
{
"targets": {
"chrome": "49",
"edge": "14",
"firefox": "51",
"safari": "11"
},
"modules": false
}
]
]
},
"esmNode": {
"presets": [["@babel/preset-env", { "targets": { "node": "10" }, "modules": false }]]
Expand Down

0 comments on commit 57b439a

Please sign in to comment.