Files
lina/babel.config.js
2025-12-17 19:31:14 +08:00

15 lines
319 B
JavaScript

module.exports = {
presets: ['@vue/cli-plugin-babel/preset'],
plugins: [
'@babel/plugin-proposal-optional-chaining',
[
'@vue/babel-plugin-jsx',
{
// Keep Vue 2-style v-model and onXXX handlers compatible where used
transformOn: true,
mergeProps: true
}
]
]
}