feat(frontend): Scaffold React project with Vite, Tailwind CSS v4, and shadcn/ui

This commit is contained in:
Yunxiao Xu
2026-02-11 19:20:08 -08:00
parent 0dfdef738d
commit 5d0130731d
19 changed files with 9672 additions and 0 deletions

13
frontend/tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"files": [],
"references": [
{ "path": "./tsconfig.app.json" },
{ "path": "./tsconfig.node.json" }
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}