summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/.babelrc.js
blob: 137b266162e6a5f20380feb1adc81b312631940a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
  presets: [
    [
      '@babel/preset-env',
      {
        targets: {
          browsers: ['last 2 versions', 'ie >= 11']
        }
      }
    ]
  ],
  plugins: ['@babel/plugin-syntax-dynamic-import']
}