diff options
Diffstat (limited to 'vendor/twbs/bootstrap/.babelrc.js')
-rw-r--r-- | vendor/twbs/bootstrap/.babelrc.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/.babelrc.js b/vendor/twbs/bootstrap/.babelrc.js new file mode 100644 index 000000000..3dba11bd9 --- /dev/null +++ b/vendor/twbs/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' ] + } + } +}; |