Files
nextjs-fetch-data-example/tsconfig.json
S.Gromov 7c0f597840 chore: обновить инфраструктуру Mantine и шаблоны
- добавлен алиас infra и обновлены импорты Mantine
- настроены тема, цветовая схема и CSS-переменные Mantine
- добавлен переключатель цветовой схемы на главный экран
- обновлены шаблоны бизнес- и infra-модулей под фабрики
- добавлена команда генерации Petstore API и исключён generated-код из Biome
- обновлены JSDoc-комментарии React-компонентов
2026-05-07 22:13:26 +03:00

41 lines
902 B
JSON

{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"app/*": ["./src/app/*"],
"business/*": ["./src/business/*"],
"infra/*": ["./src/infra/*"],
"layouts/*": ["./src/layouts/*"],
"screens/*": ["./src/screens/*"],
"ui/*": ["./src/ui/*"],
"shared/*": ["./src/shared/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts",
"**/*.mts"
],
"exclude": ["node_modules"]
}