web/babel.config.js

13 lines
242 B
JavaScript
Raw Normal View History

2019-07-03 14:50:04 +00:00
module.exports = {
2020-02-06 06:05:46 +00:00
presets: [
2021-12-14 07:39:52 +00:00
'@vue/app',
'@babel/preset-typescript'
2020-02-06 06:05:46 +00:00
],
plugins: [
["component", {
"libraryName": "element-ui",
"styleLibraryName": "theme-chalk"
}]
]
};