.roadhogrc 661 B

12345678910111213141516171819202122232425262728
  1. {
  2. "entry": "src/index.js",
  3. "env": {
  4. "development": {
  5. "extraBabelPlugins": [
  6. "dva-hmr",
  7. "transform-runtime",
  8. "transform-decorators-legacy",
  9. "transform-class-properties",
  10. ["import", { "libraryName": "antd", "style": true }]
  11. ]
  12. },
  13. "production": {
  14. "extraBabelPlugins": [
  15. "transform-runtime",
  16. "transform-decorators-legacy",
  17. "transform-class-properties",
  18. ["import", { "libraryName": "antd", "style": true }]
  19. ]
  20. }
  21. },
  22. "externals": {
  23. "g2": "G2",
  24. "g-cloud": "Cloud",
  25. "g2-plugin-slider": "G2.Plugin.slider"
  26. },
  27. "theme": "./src/theme.js"
  28. }