russ_react_server/tsconfig.json
2025-01-29 23:37:45 +03:00

15 lines
906 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"compilerOptions": {
"target": "ES2020", // Уровень компиляции JavaScript
"module": "CommonJS", // Для совместимости с Node.js
"outDir": "./dist", // Папка для скомпилированных файлов
"rootDir": "./src", // Исходный код
"strict": true, // Включение строгой проверки типов
"esModuleInterop": true, // Для совместимости с модулями ES
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true // Ускоряет компиляцию
},
"include": ["src/**/*"], // Файлы, которые обрабатывает TypeScript
"exclude": ["node_modules"] // Исключение для node_modules
}