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:
authorJohann-S <johann.servoire@gmail.com>2017-11-13 13:25:36 +0300
committerGitHub <noreply@github.com>2017-11-13 13:25:36 +0300
commit9a0bba9afa039308e84442a2b329bf64f5678a00 (patch)
tree0b4216889b0b675407b85d74692d8505ecfd0c82 /.babelrc.js
parent1354a929f911bfb8bf3a9b22c0f79fc0277c3a74 (diff)
Object spread : less jQuery more ES6 (#24665)
Diffstat (limited to '.babelrc.js')
-rw-r--r--.babelrc.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/.babelrc.js b/.babelrc.js
index 693f6f8a3a..277f96ae74 100644
--- a/.babelrc.js
+++ b/.babelrc.js
@@ -10,6 +10,7 @@ module.exports = {
]
],
plugins: [
- process.env.PLUGINS && 'transform-es2015-modules-strip'
+ process.env.PLUGINS && 'transform-es2015-modules-strip',
+ '@babel/proposal-object-rest-spread'
].filter(Boolean)
};