From 22f32415c03a33547b64a080fa6bbd7e954b845f Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Thu, 25 Jun 2020 18:38:39 +0300 Subject: [PATCH] Update Babel config (#31011) * remove plugin-proposal-object-rest-spread * add bugfixes * `exclude: ['transform-typeof-symbol']` did nothing with our config --- .babelrc.js | 7 ++----- package.json | 1 - 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.babelrc.js b/.babelrc.js index b1b8d1573cad..51399697f4e5 100644 --- a/.babelrc.js +++ b/.babelrc.js @@ -4,12 +4,9 @@ module.exports = { '@babel/preset-env', { loose: true, - modules: false, - exclude: ['transform-typeof-symbol'] + bugfixes: true, + modules: false } ] - ], - plugins: [ - '@babel/plugin-proposal-object-rest-spread' ] }; diff --git a/package.json b/package.json index 3cce53ddf725..29577f3e0e17 100644 --- a/package.json +++ b/package.json @@ -94,7 +94,6 @@ "devDependencies": { "@babel/cli": "^7.10.3", "@babel/core": "^7.10.3", - "@babel/plugin-proposal-object-rest-spread": "^7.10.3", "@babel/preset-env": "^7.10.3", "@rollup/plugin-babel": "^5.0.4", "@rollup/plugin-commonjs": "^13.0.0",