Files
reactShop/babel.config.json
2025-07-02 12:49:06 +02:00

21 lines
385 B
JSON

{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"Chrome >= 91",
"Firefox >= 90",
"Safari >= 14",
"Edge >= 91"
]
},
"modules": false,
"useBuiltIns": false
}
],
["@babel/preset-react", { "runtime": "automatic" }]
],
"plugins": []
}