init: шаблон Next.js приложения
- Next.js 16 + React 19 + TypeScript
- Mantine UI + PostCSS Modules
- Biome (линтинг и форматирование)
- Zustand, SWR
- Структура FSD (screens, widgets, features, entities, shared)
- Шаблоны генерации (.templates/): component, screen, feature, widget, entity, layout, store
- Конфигурация VS Code (расширения, настройки)
- CSS-токены (цвета, отступы, радиусы, медиа)
- Open Graph метаданные
- Тестовый home screen с Mantine
2026-03-28 22:11:43 +03:00
|
|
|
{
|
|
|
|
|
"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": {
|
2026-04-28 09:19:27 +03:00
|
|
|
"app/*": ["./src/app/*"],
|
|
|
|
|
"business/*": ["./src/business/*"],
|
|
|
|
|
"infrastructure/*": ["./src/infrastructure/*"],
|
|
|
|
|
"layouts/*": ["./src/layouts/*"],
|
|
|
|
|
"screens/*": ["./src/screens/*"],
|
|
|
|
|
"ui/*": ["./src/ui/*"],
|
|
|
|
|
"shared/*": ["./src/ui/*"]
|
init: шаблон Next.js приложения
- Next.js 16 + React 19 + TypeScript
- Mantine UI + PostCSS Modules
- Biome (линтинг и форматирование)
- Zustand, SWR
- Структура FSD (screens, widgets, features, entities, shared)
- Шаблоны генерации (.templates/): component, screen, feature, widget, entity, layout, store
- Конфигурация VS Code (расширения, настройки)
- CSS-токены (цвета, отступы, радиусы, медиа)
- Open Graph метаданные
- Тестовый home screen с Mantine
2026-03-28 22:11:43 +03:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
|
|
|
|
".next/types/**/*.ts",
|
|
|
|
|
".next/dev/types/**/*.ts",
|
|
|
|
|
"**/*.mts"
|
|
|
|
|
],
|
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
|
}
|