mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:41:09 +02:00
Implements a minimal self-hosted Matrix chat client with: - matrix-js-sdk integration with Svelte 5 runes store - Password login with homeserver discovery - Room list (DMs and groups) with unread counts - Message timeline with typing indicators - Send messages with Enter key - Responsive chat UI with Tailwind CSS Project structure: - apps/matrix/apps/web: SvelteKit client (port 5180) - apps/matrix/packages/shared: Shared types Commands: pnpm dev:matrix:web https://claude.ai/code/session_01RUrt2qN1D3nVh9HcGpwoby
16 lines
320 B
JSON
16 lines
320 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ES2022"],
|
|
"module": "ES2022",
|
|
"target": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|