aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/.babelrc
blob: 2962b9304d526a618ac3472a356b3e16a61c9646 (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
45
46
47
48
49
50
51
{
  "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",
    ["transform-object-rest-spread", {
      // use built-in `Object.assign`
      "useBuiltIns": true
    }]
  ],
  "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/**"
  ]
}