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