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

babel.config.js « polyfills « CoreVue « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e64a6763777019f89e6bdaee2620353edb19d78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module.exports = {
  presets: [
    ['@vue/cli-plugin-babel/preset', {
      polyfills: [
        'es.array.iterator',
        'es.promise',
        'es.object.assign',
        'es.promise.finally',
        'es.object.entries',
        'es.object.values',
        'es.string.trim',
        'es.string.replace-all',

        // TODO: what else do we want included?
      ],
    }],
  ],
};