diff options
Diffstat (limited to 'vnext/package.json')
-rw-r--r-- | vnext/package.json | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/vnext/package.json b/vnext/package.json index 55fb38b7..8664ca18 100644 --- a/vnext/package.json +++ b/vnext/package.json @@ -66,11 +66,20 @@ "@babel/plugin-syntax-dynamic-import" ], "presets": [ - "@babel/preset-env", + [ + "@babel/preset-env", + { + "useBuiltIns": "usage", + "targets": { + "browsers": "ie >=9, android >= 4.2" + } + } + ], "@babel/preset-react" ] }, "dependencies": { + "@babel/polyfill": "^7.0.0", "axios": "^0.18.0", "immutability-helper": "^2.8.1", "moment": "^2.22.2", |