aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/twbs/bootstrap/.babelrc.js
blob: 3dba11bd9fba8417314d4ed066bae6055c5750f3 (plain) (tree)



















                                            
module.exports = {
  presets: [
    [
      '@babel/env',
      {
        loose: true,
        modules: false,
        exclude: ['transform-typeof-symbol']
      }
    ]
  ],
  plugins: [
    '@babel/proposal-object-rest-spread'
  ],
  env: {
    test: {
      plugins: [ 'istanbul' ]
    }
  }
};