summaryrefslogtreecommitdiff
path: root/.babelrc
blob: 96d1b0512e08cc33a78c718bf17fa33cbe7642d3 (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
{
  "plugins": ["@babel/plugin-syntax-dynamic-import"],
  "presets": [
    [
      "@babel/preset-react",
      {
        "modules": false,
      }
    ],
    [
      "@babel/preset-env",
      {
        "modules": false,
      }
    ],
  ],
  "env": {
    "karma": {
      "plugins": [
        [
          "istanbul",
          { "exclude": ["tests/*.test.js"] }
        ]
      ],
    },
  }
}