Some checks failed
CI / Lint & Format (push) Has been cancelled
CI / Lint & Format (pull_request) Has been cancelled
PR Check / Lint & Typecheck (pull_request) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Build All Apps (push) Has been cancelled
CI / Backend Tests (pull_request) Has been cancelled
CI / Build All Apps (pull_request) Has been cancelled
- Реализован packages/api-client: HTTP-клиент, типы, аутентификация - Все веб-панели (web-admin, web-club-admin, web-platform-admin) переведены на реальный API-клиент вместо моковых данных - Добавлены lib/api.ts и lib/auth.ts для club-admin и platform-admin - metering.service: лимиты модулей теперь берутся из club_modules.limits_json - provisioning.service: рефакторинг под strategy pattern Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
352 B
JSON
17 lines
352 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"composite": true,
|
|
"lib": ["ES2022", "DOM"],
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false
|
|
},
|
|
"references": [
|
|
{ "path": "../shared-types" }
|
|
],
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|