Revision c46ff3376e06d900588e0d0ab2211b3bf65819ba authored by keenangraham on 12 November 2021, 17:36:37 UTC, committed by GitHub on 12 November 2021, 17:36:37 UTC
1 parent 209be2f
Raw File
babel.config.json
{
    "plugins": [
        "@babel/plugin-transform-modules-commonjs",
        "@babel/plugin-transform-runtime"
    ],
    "presets": [
        [
            "@babel/preset-react",
            {
                "runtime": "automatic"
            }
        ],
        [
            "@babel/env",
            {
                "targets": {
                    "edge": "17",
                    "firefox": "60",
                    "chrome": "67",
                    "safari": "11.1"
                },
                "useBuiltIns": "entry",
                "corejs": 3
            }
        ]
    ]
}
back to top