.babelrc 372 B

123456789101112131415161718192021222324
  1. {
  2. "presets": [
  3. [
  4. "env",
  5. {
  6. "modules": false
  7. }
  8. ],
  9. "stage-2"
  10. ],
  11. "plugins": [
  12. "transform-runtime",
  13. "transform-object-assign",
  14. // "transform-vue-jsx",
  15. [
  16. "import",
  17. {
  18. "libraryName": "muse-ui",
  19. "libraryDirectory": "lib",
  20. "camel2DashComponentName": false
  21. }
  22. ]
  23. ]
  24. }