webpack-autoconf icon indicating copy to clipboard operation
webpack-autoconf copied to clipboard

.babelrc file needs quotes

Open KokoDoko opened this issue 4 years ago • 0 comments

The generated .babelrc file is not accepted by visual studio code until I add quotes around the keys manually:

{
    "presets": [
        [
        "@babel/preset-env",
            {"modules": false}
        ],
        "@babel/preset-react"
    ]
}

KokoDoko avatar Dec 10 '20 19:12 KokoDoko