mirror of
https://github.com/jumpserver/lina.git
synced 2026-01-15 14:24:39 +00:00
15 lines
319 B
JavaScript
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
|
|
}
|
|
]
|
|
]
|
|
}
|