diff --git a/babel.config.js b/babel.config.js deleted file mode 100644 index 4e9503c4..00000000 --- a/babel.config.js +++ /dev/null @@ -1,26 +0,0 @@ -module.exports = function(api) { - api.cache.forever(); - - return { - "presets": [ - ["@babel/preset-env", { - "modules": false, - "useBuiltIns": "entry", - "corejs": 3 - }] - ], - "plugins": [ - "dynamic-import-node", - [ - "babel-plugin-transform-builtin-extend", { - "globals": ["Error"] - } - ], - [ - "@babel/plugin-transform-runtime", { - "regenerator": true - } - ] - ] - }; -};