aboutsummaryrefslogtreecommitdiff
path: root/babel.config.json
blob: 4d17f0010c7da50535362771908bab4597a9fc46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    "presets": [
        [
            "@babel/preset-env",
            {
                "corejs": 3,
                "useBuiltIns": "entry",
                "modules": false,
                "exclude": [
                    "es.symbol.*"
                ]
            }
        ],
        [
            "@babel/preset-react",
            {
                "runtime": "automatic"
            }
        ]
    ]
}