xref: /openbmc/webui-vue/babel.config.js (revision 142fe91835e0f57b01a2801946f1b63ab56ee3cc)
1module.exports = {
2  presets: [
3    [
4      '@vue/app',
5      {
6        targets: { esmodules: false },
7        polyfills: false,
8      },
9    ],
10  ],
11  env: {
12    test: {
13      plugins: ['transform-require-context'],
14    },
15  },
16};
17