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