https://github.com/twbs/bootstrap
Raw File
Tip revision: 7a6da5e3e7ad7c749dde806546a35d4d4259d965 authored by XhmikosR on 12 May 2020, 16:53:07 UTC
Dist
Tip revision: 7a6da5e
.babelrc.js
module.exports = {
  presets: [
    [
      '@babel/preset-env',
      {
        loose: true,
        modules: false,
        exclude: ['transform-typeof-symbol']
      }
    ]
  ],
  plugins: [
    '@babel/plugin-proposal-object-rest-spread'
  ],
  env: {
    test: {
      plugins: [ 'istanbul' ]
    }
  }
};
back to top