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-05 21:03:33 +0300
committerXhmikosR <xhmikosr@gmail.com>2017-11-08 02:04:31 +0300
commit83fd91cdf87dd797c719a4ecea798083c92f4b3a (patch)
treea74d88016ffded3b904523bb87bf90030fedf0c2 /.babelrc.js
parentfc9967e17537777ff98faff357876e643d15ba8c (diff)
Update to babel beta 5
Diffstat (limited to '.babelrc.js')
-rw-r--r--.babelrc.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/.babelrc.js b/.babelrc.js
index ab2b8606ef..693f6f8a3a 100644
--- a/.babelrc.js
+++ b/.babelrc.js
@@ -1,16 +1,15 @@
module.exports = {
presets: [
[
- 'env',
+ '@babel/env',
{
loose: true,
modules: false,
- exclude: ['transform-es2015-typeof-symbol']
+ exclude: ['transform-typeof-symbol']
}
]
],
plugins: [
- process.env.ROLLUP && 'external-helpers',
process.env.PLUGINS && 'transform-es2015-modules-strip'
].filter(Boolean)
};