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:
authorHenry Zhu <hi@henryzoo.com>2017-09-17 09:40:48 +0300
committerJohann-S <johann.servoire@gmail.com>2017-09-17 09:40:48 +0300
commitf17b165f0fa2ff7b9537cfc368796aa92ae91139 (patch)
treec680c0c9ff60b14831840a2ee31ec5ce27fa125c /.babelrc.js
parent5cec8e0de6d6d9fa525e82f309ada18fdb3e3753 (diff)
Babel 7 (#23966)
* use .babelrc.js, compile bundled/non-bundled with loose mode * add back helper, exclude typeof transform
Diffstat (limited to '.babelrc.js')
-rw-r--r--.babelrc.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/.babelrc.js b/.babelrc.js
new file mode 100644
index 0000000000..a3a75e06cf
--- /dev/null
+++ b/.babelrc.js
@@ -0,0 +1,16 @@
+module.exports = {
+ presets: [
+ [
+ 'env',
+ {
+ loose: true,
+ modules: false,
+ exclude: ['transform-es2015-typeof-symbol']
+ }
+ ]
+ ],
+ plugins: [
+ process.env.ROLLUP && 'external-helpers',
+ process.env.PLUGINS && 'transform-es2015-modules-strip',
+ ].filter(Boolean)
+};