aboutsummaryrefslogtreecommitdiffstats
path: root/.babelrc
blob: dc041f43b96616cf0c90cb4f4456856cc85fbc28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "presets": [
    [
      "babel-preset-env",
      {
        "targets": {
          "electron": "1.7.2"
        }
      }
    ],
    "babel-preset-react"
  ],
  "plugins": [
    "transform-decorators-legacy",
    "transform-flow-strip-types",
    "transform-class-properties",
  ],
  "sourceMaps": "inline"
}