managarten/apps/zitare/packages/web-ui/tsconfig.json
Till-JS f436fbb99d feat(theme): migrate theme emojis to Phosphor icons and integrate theme system into Zitare
- Replace emoji with Phosphor icon components in ThemeCard
- Add icon property to ThemeVariantDefinition type
- Add theme icon SVG paths to PillDropdown (sparkle, leaf, hexagon, waves)
- Update all app layouts to use icon instead of emoji for theme variants
- Integrate shared-theme system into Zitare web app
- Migrate Zitare from Tailwind v3 to v4
- Add themes page to Zitare
- Update Zitare settings page with icon-based theme display
- Add missing shared-icons dependency to Presi and Zitare

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 09:24:32 +01:00

19 lines
455 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"strict": true,
"resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"paths": {
"@zitare/shared": ["../shared/src/index.ts"],
"@zitare/web-ui": ["./src/index.ts"],
"@zitare/web-ui/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.svelte"],
"exclude": ["node_modules"]
}