diff options
Diffstat (limited to 'themes/docsy/assets/vendor/bootstrap/.babelrc.js')
-rw-r--r-- | themes/docsy/assets/vendor/bootstrap/.babelrc.js | 20 |
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' ] + } + } +}; |