https://github.com/twbs/bootstrap
Raw File
Tip revision: 8f7bd419935adfcd53c471a0202083464800619e authored by Mark Otto on 09 April 2018, 16:00:23 UTC
Ship v4.1.0 (#26218)
Tip revision: 8f7bd41
.babelrc.js
module.exports = {
  presets: [
    [
      '@babel/env',
      {
        loose: true,
        modules: false,
        exclude: ['transform-typeof-symbol']
      }
    ]
  ],
  plugins: [
    process.env.PLUGINS && 'transform-es2015-modules-strip',
    '@babel/proposal-object-rest-spread'
  ].filter(Boolean),
  env: {
    test: {
      plugins: [ 'istanbul' ]
    }
  }
};
back to top