https://github.com/twbs/bootstrap
Raw File
Tip revision: a716fb03f965dc0846df479e14388b1b4b93d7ce authored by XhmikosR on 13 October 2020, 15:38:30 UTC
Prepare v4.5.3. (#31880)
Tip revision: a716fb0
.babelrc.js
module.exports = {
  presets: [
    [
      '@babel/preset-env',
      {
        loose: true,
        bugfixes: true,
        modules: false
      }
    ]
  ],
  env: {
    test: {
      plugins: [ 'istanbul' ]
    }
  }
};
back to top