aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/.babelrc
blob: 0ecf1664f9c1324f9c7edd962b5e6360af93073c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "presets": ["es2015", "stage-0", "react"],
  "ignore": [
    "**/libs/**"
  ],
  "env": {
    "hot": {
      "plugins": [["react-transform", {
        "transforms": [{
          "transform": "react-transform-hmr",
          "imports": ["react"],
          "locals": ["module"]
        }]
      }]]
    }
  }
}