scratch-www/.babelrc
2024-03-20 15:13:15 -07:00

18 lines
451 B
Text

// .babelrc is an alias for .babelrc.json and uses JSON5 syntax
{
"plugins": [
"@babel/plugin-transform-async-to-generator",
"@babel/plugin-transform-object-rest-spread",
"@babel/plugin-syntax-dynamic-import",
"transform-require-context"
],
"presets": [
[
"@babel/preset-env",
{
"bugfixes": true
}
],
"@babel/preset-react"
]
}