.babelrc 469 字节
Newer Older
yma16's avatar
yma16 已提交
1 2
{
  "presets": [
yma16's avatar
yma16 已提交
3 4 5 6 7 8 9
    [
      "env",
      {
        "modules": false,
        "targets": {
          "browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
        }
yma16's avatar
yma16 已提交
10
      }
yma16's avatar
yma16 已提交
11
    ],
yma16's avatar
yma16 已提交
12 13
    "stage-2"
  ],
yma16's avatar
yma16 已提交
14 15 16 17 18 19 20 21 22 23 24
  "plugins": [
    "transform-vue-jsx",
    "transform-runtime",
    [
      "component",
      {
        "libraryName": "element-ui",
        "styleLibraryName": "theme-chalk"
      }
    ]
  ],
yma16's avatar
yma16 已提交
25 26 27 28 29 30
  "env": {
    "test": {
      "presets": ["env", "stage-2"]
    }
  }
}