This commit is contained in:
seb
2025-07-02 12:49:06 +02:00
commit edbd56f6a9
123 changed files with 32598 additions and 0 deletions

21
babel.config.json Normal file
View File

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