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