aboutsummaryrefslogtreecommitdiffhomepage
path: root/babel.config.json
blob: 71ffbe280854e38f180888b3b6a6ed888d93e11f (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
{
  "presets": [
    [
      "@babel/env",
      {
        "targets": {
          "node": true
        }
      }
    ],
    "@babel/typescript"
  ],
  "plugins": [
    "@babel/proposal-class-properties",
    "@babel/proposal-object-rest-spread"
  ],
  "sourceMaps": true,
  "retainLines": true,

  "env": {
    "test": {
      "plugins": ["dynamic-import-node"]
    }
  }
}