Fix issues with duplicate polyfill added with 16

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2019-02-12 10:15:01 +01:00
parent 056bf1ccab
commit 8071b34ddb
3 changed files with 14 additions and 4 deletions

12
js/.babelrc.js Normal file
View File

@@ -0,0 +1,12 @@
module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
browsers: ['last 2 versions', 'ie >= 11']
}
}
]
]
}