Files
multica/tsconfig.json
Naiyuan Qing 33c66c77c6 feat(ui): initialize shadcn/ui design system
- Add fake vite.config.ts to support shadcn CLI detection
- Configure path aliases (@/*) in tsconfig files
- Add components.json for shadcn configuration
- Install shadcn dependencies (clsx, tailwind-merge, etc.)
- Add Button component and replace MessageInput buttons
- Update CSS with shadcn design tokens

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-14 13:53:50 +08:00

11 lines
214 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/renderer/src/*"]
}
},
"files": [],
"references": [{ "path": "./tsconfig.node.json" }, { "path": "./tsconfig.web.json" }]
}