generated from github/codespaces-react
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
13 lines (13 loc) · 941 Bytes
/
tsconfig.json
File metadata and controls
13 lines (13 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"compilerOptions": {
"target": "es5", // Настройка для старого JavaScript, ES5
"lib": ["dom", "esnext"], // Библиотеки для работы с DOM и новыми возможностями JavaScript
"jsx": "react", // Включаем поддержку JSX для React
"moduleResolution": "node", // Для правильного разрешения модулей
"strict": true, // Включаем строгий режим для более безопасного кода
"esModuleInterop": true, // Для лучшей совместимости с импортами
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"] // Указываем, какие файлы нужно включать в проект
}