aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/.babelrc.js
blob: 1d6404edbe5f3ce9ff9b3046898dd98310e61d8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module.exports = {
  presets: [
    [
      '@babel/preset-env',
      {
        loose: true,
        bugfixes: true,
        modules: false
      }
    ]
  ],
  env: {
    test: {
      plugins: [ 'istanbul' ]
    }
  }
};