mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2025-06-07 10:04:24 +08:00
11 lines
257 B
JavaScript
11 lines
257 B
JavaScript
/* istanbul ignore next */
|
|
module.exports = {
|
|
presets: [
|
|
'@babel/preset-env',
|
|
],
|
|
plugins: [
|
|
/* eslint-disable-next-line global-require */
|
|
[require('./dist/index.js'), { optimize: true, isCustomElement: (tag) => /^x-/.test(tag) }],
|
|
],
|
|
};
|