12 lines
328 B
JavaScript
Raw Normal View History

2020-05-21 13:14:20 +08:00
const babelSugarVModel = require('./babel-sugar-v-model');
2020-05-16 21:24:51 +08:00
const babelPluginTransformVueJsx = require('./babel-plugin-transform-vue-jsx');
2020-05-17 16:36:38 +08:00
const babelSugarFragment = require('./babel-sugar-fragment');
2020-05-13 19:14:28 +08:00
module.exports = () => ({
2020-05-16 21:24:51 +08:00
plugins: [
2020-05-21 13:14:20 +08:00
babelSugarVModel,
2020-05-16 21:24:51 +08:00
babelPluginTransformVueJsx,
2020-05-17 16:36:38 +08:00
babelSugarFragment,
2020-05-16 21:24:51 +08:00
],
2020-05-13 19:14:28 +08:00
});