Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-06-25 18:38:39 +0300
committerGitHub <noreply@github.com>2020-06-25 18:38:39 +0300
commit22f32415c03a33547b64a080fa6bbd7e954b845f (patch)
tree9a2d933f611fc9e57fa9cdabd8456ed3a9d56468 /.babelrc.js
parentacdeaed47df69c134154235b902fd12761b03f22 (diff)
Update Babel config (#31011)
* remove plugin-proposal-object-rest-spread * add bugfixes * `exclude: ['transform-typeof-symbol']` did nothing with our config
Diffstat (limited to '.babelrc.js')
-rw-r--r--.babelrc.js7
1 files changed, 2 insertions, 5 deletions
diff --git a/.babelrc.js b/.babelrc.js
index b1b8d1573c..51399697f4 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'
]
};