babel.config.js 315 B

12345678910111213141516171819202122
  1. module.exports = {
  2. "presets": [["es2015", { "modules": false }]],
  3. "plugins": [
  4. [
  5. "component",
  6. {
  7. "libraryName": "element-ui",
  8. "styleLibraryName": "theme-chalk"
  9. }
  10. ]
  11. ]
  12. }
  13. // {
  14. // presets: [
  15. // '@vue/app'
  16. // ]
  17. // }