🔧 fix: type errors in element.mana.how, mana-media, @todo/web, @calendar/web

- cloudflared: Fix element.mana.how port (8087 → 4080)
- cloudflared: Add missing link.mana.how entry
- mana-media: Fix type-check to run tsc directly on subpackages
- @todo/web: Fix TodoAppSettings to extend Record<string, unknown>
- @todo/web: Add optional chaining for toolbarCollapsedStore
- @calendar/web: Fix CalendarAppSettings to extend Record<string, unknown>
- @calendar/web: Add optional chaining for toolbarCollapsedStore

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-02-01 04:56:29 +01:00
parent 0653972195
commit 06c85ec6c0
6 changed files with 11 additions and 10 deletions

View file

@ -5,7 +5,7 @@
"dev": "pnpm --filter @mana-media/api dev",
"build": "pnpm --filter @mana-media/api build",
"start": "pnpm --filter @mana-media/api start:prod",
"type-check": "pnpm -r type-check",
"lint": "pnpm -r lint"
"type-check": "tsc --noEmit -p apps/api/tsconfig.json && tsc --noEmit -p packages/client/tsconfig.json",
"lint": "eslint 'apps/api/src/**/*.ts'"
}
}