feat: конфигурация Babel с поддержкой React 19 и automatic JSX runtime

- Настроены пресеты: env, typescript, react
- Добавлена документация на русском языке (babel.config.README.md)
- Automatic JSX runtime - не требуется импорт React
This commit is contained in:
Ilia Mashkov
2025-11-19 10:11:31 +03:00
parent fb5a5a16bc
commit b7575ea756
2 changed files with 149 additions and 0 deletions

12
babel.config.json Normal file
View File

@@ -0,0 +1,12 @@
{
"presets": [
"@babel/preset-env",
"@babel/preset-typescript",
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
]
}