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: b1b8d1573cadfb835410ea70f3eaf2b8be48d58d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports = {
  presets: [
    [
      '@babel/preset-env',
      {
        loose: true,
        modules: false,
        exclude: ['transform-typeof-symbol']
      }
    ]
  ],
  plugins: [
    '@babel/plugin-proposal-object-rest-spread'
  ]
};