/
lizardking
/
react_project
Обзор
Документация
Войти
/
lizardking
/
react_project
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
tsconfig.json
33 строки
810 B
LizardKing
Initial commit
22 сен 2025, 19:45
22 сен 2025, 19:45
d36708e
Код
Авторство
О чём код?
{ "compilerOptions": { "target": "ES2022", "module": "ESNext", "lib": ["ES2022", "DOM", "DOM.Iterable"], "jsx": "react-jsx", "moduleResolution": "Bundler", "noEmit": true, "resolveJsonModule": true, "isolatedModules": true, "useDefineForClassFields": true, "skipLibCheck": true, "strict": true, "noUncheckedIndexedAccess": true, "exactOptionalPropertyTypes": true, "allowUnusedLabels": false, "baseUrl": "src", "paths": { "app/*": ["app/*"], "pages/*": ["pages/*"], "widgets/*": ["widgets/*"], "features/*": ["features/*"], "entities/*": ["entities/*"], "shared/*": ["shared/*"] }, "outDir": "./dist" }, "include": ["src", "vite-env.d.ts"], "exclude": ["dist", "node_modules", "coverage"] }