You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
639 B
19 lines
639 B
module.exports = {
|
|
env: {
|
|
test: {
|
|
presets: [['@babel/preset-env', { targets: { node: true } }]],
|
|
plugins: [
|
|
['@vue/babel-plugin-jsx', { mergeProps: false, enableObjectSlots: false }],
|
|
'@babel/plugin-proposal-optional-chaining',
|
|
'@babel/plugin-transform-object-assign',
|
|
'@babel/plugin-proposal-object-rest-spread',
|
|
'@babel/plugin-proposal-export-default-from',
|
|
'@babel/plugin-proposal-export-namespace-from',
|
|
'@babel/plugin-proposal-class-properties',
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
'@babel/plugin-transform-runtime',
|
|
],
|
|
},
|
|
},
|
|
};
|