scratch-desktop/.babelrc

14 lines
331 B
Text
Raw Normal View History

2023-12-15 18:06:02 -05:00
{
"presets": [
["@babel/preset-env", {
"targets": {
"browsers": [
"node >= 16", // Electron's main process
"chrome >= 63" // Electron's render process (see Scratch FAQ)
]
}
}],
2023-12-15 18:06:02 -05:00
"@babel/preset-react"
]
}