2020-08-12 20:26:09 +08:00
|
|
|
module.exports = {
|
|
|
|
env: {
|
|
|
|
test: {
|
2022-07-07 09:50:56 +08:00
|
|
|
presets: [['@babel/preset-env']],
|
2020-08-12 20:26:09 +08:00
|
|
|
plugins: [
|
2021-04-30 11:23:35 +08:00
|
|
|
['@vue/babel-plugin-jsx', { mergeProps: false, enableObjectSlots: false }],
|
2020-08-12 20:26:09 +08:00
|
|
|
'@babel/plugin-proposal-optional-chaining',
|
|
|
|
'@babel/plugin-transform-object-assign',
|
|
|
|
'@babel/plugin-proposal-object-rest-spread',
|
|
|
|
'@babel/plugin-proposal-export-default-from',
|
2020-10-19 17:17:10 +08:00
|
|
|
'@babel/plugin-proposal-export-namespace-from',
|
2020-08-12 20:26:09 +08:00
|
|
|
'@babel/plugin-proposal-class-properties',
|
|
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
|
|
'@babel/plugin-transform-runtime',
|
2022-07-07 10:07:54 +08:00
|
|
|
'transform-require-context',
|
2020-08-12 20:26:09 +08:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|