aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/.babelrc
blob: a14ae9bb095a307312159e7b0d15ecb7b634712f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
  "presets": [
    [
      "env",
      {
        "modules": false,
        "targets": {
          "browsers": [
            "last 3 Chrome versions",
            "last 3 Firefox versions",
            "last 3 Safari versions",
            "last 3 Edge versions",
            "IE 11"
          ]
        },
        "useBuiltIns": true
      }
    ],
    "react"
  ],
  "plugins": [
    "transform-class-properties",
    // use built-in `Object.assign`
    ["transform-object-rest-spread", { "useBuiltIns": true }],
    "lodash"
  ],
  "env": {
    "production": {
      "plugins": ["syntax-dynamic-import", "transform-react-constant-elements"]
    },
    "development": {
      "plugins": ["syntax-dynamic-import", "transform-react-jsx-source", "transform-react-jsx-self"]
    },
    "test": {
      "plugins": [
        "transform-es2015-modules-commonjs",
        "dynamic-import-node",
        "transform-react-jsx-source",
        "transform-react-jsx-self"
      ]
    }
  },
  "ignore": ["**/libs/**"]
}