From 8a5d45e337321a94cf8a27c01797562daaba965e 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 b17738f866f0..1d6404edbe5f 100644 --- a/.babelrc.js +++ b/.babelrc.js @@ -4,14 +4,11 @@ module.exports = { '@babel/preset-env', { loose: true, - modules: false, - exclude: ['transform-typeof-symbol'] + bugfixes: true, + modules: false } ] ], - plugins: [ - '@babel/plugin-proposal-object-rest-spread' - ], env: { test: { plugins: [ 'istanbul' ] diff --git a/package.json b/package.json index a2fbae44a17d..1be585bf7103 100644 --- a/package.json +++ b/package.json @@ -111,7 +111,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",