about summary refs log tree commit diff
path: root/.babelrc
blob: 036ef6b98dae44e5ed654bce01a85ab51b448006 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "env": {
    "test": {
      "presets": [
        [
          "@babel/preset-env",
          {
            "targets": {
              "node": "current"
            }
          }
        ]
      ],
      "plugins": ["babel-plugin-require-context-hook"]
    }
  }
}