mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2025-03-14 14:44:41 +08:00
12 lines
328 B
JavaScript
12 lines
328 B
JavaScript
const babelSugarVModel = require('./babel-sugar-v-model');
|
|
const babelPluginTransformVueJsx = require('./babel-plugin-transform-vue-jsx');
|
|
const babelSugarFragment = require('./babel-sugar-fragment');
|
|
|
|
module.exports = () => ({
|
|
plugins: [
|
|
babelSugarVModel,
|
|
babelPluginTransformVueJsx,
|
|
babelSugarFragment,
|
|
],
|
|
});
|