mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-21 02:08:24 -05:00
18 lines
451 B
Text
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"
|
|
]
|
|
}
|