Bug/1030 Adjust babel config to account for IE11

An attempt at adding IE11 compatibility (`ie >= 11`) while preserving the current requirements (`current node`) and following browserlist [best practices](https://github.com/browserslist/browserslist#best-practices) (`defaults`).
This commit is contained in:
penenkel
2019-11-29 23:06:49 +01:00
committed by GitHub
parent 50ea9bda89
commit 64c20dc528

View File

@@ -3,9 +3,7 @@ module.exports = {
[
'@babel/preset-env',
{
targets: {
node: 'current'
}
targets: "defaults, ie >= 11, current node"
}
]
]