mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-30 02:57:50 +08:00
18 lines
545 B
JavaScript
18 lines
545 B
JavaScript
module.exports = {
|
|
env: {
|
|
test: {
|
|
presets: [['@babel/preset-env', { targets: { node: true } }]],
|
|
plugins: [
|
|
['@ant-design-vue/babel-plugin-jsx'],
|
|
'@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-class-properties',
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
'@babel/plugin-transform-runtime',
|
|
],
|
|
},
|
|
},
|
|
};
|