aboutsummaryrefslogtreecommitdiff
path: root/themes/docsy/assets/vendor/bootstrap/.babelrc.js
diff options
context:
space:
mode:
Diffstat (limited to 'themes/docsy/assets/vendor/bootstrap/.babelrc.js')
-rw-r--r--themes/docsy/assets/vendor/bootstrap/.babelrc.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/themes/docsy/assets/vendor/bootstrap/.babelrc.js b/themes/docsy/assets/vendor/bootstrap/.babelrc.js
new file mode 100644
index 0000000..3dba11b
--- /dev/null
+++ b/themes/docsy/assets/vendor/bootstrap/.babelrc.js
@@ -0,0 +1,20 @@
+module.exports = {
+ presets: [
+ [
+ '@babel/env',
+ {
+ loose: true,
+ modules: false,
+ exclude: ['transform-typeof-symbol']
+ }
+ ]
+ ],
+ plugins: [
+ '@babel/proposal-object-rest-spread'
+ ],
+ env: {
+ test: {
+ plugins: [ 'istanbul' ]
+ }
+ }
+};