Initial scaffold: Vue + Vite + Tailwind CSS + shadcn-vue

This commit is contained in:
Patrick Mulligan 2026-04-01 16:17:11 -04:00
commit 47809dfaf6
21 changed files with 1503 additions and 0 deletions

13
tsconfig.json Normal file
View file

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