mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2024-11-10 09:39:14 +08:00
10 lines
160 B
JavaScript
10 lines
160 B
JavaScript
const { h, mergeProps } = require('vue');
|
|
|
|
module.exports = {
|
|
globals: {
|
|
'_h': h,
|
|
'_mergeProps': mergeProps
|
|
},
|
|
setupFiles: ['./test/setup.js'],
|
|
}
|