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

.babelrc.js - github.com/nextcloud/groupfolders.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5deda8b7f3771928514231939860d6da17ec2674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module.exports = {
  plugins: [
    '@babel/plugin-transform-arrow-functions',
    'transform-class-properties',
    'react-hot-loader/babel'
  ],
  presets: [
    [
      '@babel/preset-env',
      {
        targets: {
          browsers: ['last 2 versions', 'ie >= 11']
        }
      }
    ],
    '@babel/preset-react'
  ]
}