Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.babelrc.js - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d6404edbe5f3ce9ff9b3046898dd98310e61d8e (plain)
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' ]
    }
  }
};