Some checks failed
- packages/crm-ui: переиспользуемые компоненты (EntityKanban, EntityTable, EntityCard, EntityFormDialog, StageSwitcher, ActivityList, TimelineFeed, FieldManager, PipelineManager, StageBadge) - Pipeline entityType: воронки привязаны к типу сущности - Role system: таблица roles + user_roles, multi-role JWT, RolesGuard - Card layouts: admin-default + user-override раскладка карточек - Field roleAccess: видимость полей per role (hidden/readonly/editable) - EntityPermissions: multi-role поддержка (string | string[]) - DnD стадий, произвольный цвет стадий, FieldManager entityType prop Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
493 B
JSON
20 lines
493 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"jsx": "preserve",
|
|
"noEmit": true,
|
|
"allowJs": true,
|
|
"incremental": true,
|
|
"plugins": [{ "name": "next" }],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*", "next-env.d.ts", ".next/types/**/*.ts", "next.config.ts"],
|
|
"exclude": ["node_modules", ".next"]
|
|
}
|