From e0f13177a942de683571053fdb01b4f01b381f20 Mon Sep 17 00:00:00 2001 From: Macide Celik Date: Sun, 27 Oct 2019 17:19:07 +0300 Subject: [PATCH] Delete babel.config.js --- babel.config.js | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 babel.config.js 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 - } - ] - ] - }; -};