.babelrc 459 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "plugins": [
  3. "syntax-dynamic-import",
  4. "react-hot-loader/babel",
  5. [
  6. "transform-runtime",
  7. {
  8. "polyfill": false,
  9. "regenerator": true
  10. }
  11. ],
  12. [
  13. "import",
  14. [
  15. {
  16. "libraryName": "antd",
  17. "style": true
  18. },
  19. {
  20. "libraryName": "antd-mobile",
  21. "style": true
  22. }
  23. ]
  24. ]
  25. ],
  26. "presets": [
  27. "es2015",
  28. "stage-3",
  29. "react"
  30. ]
  31. }