Adding the skeleton QR code

This commit is contained in:
2026-03-14 00:24:58 -04:00
commit 6ce0fc0768
27 changed files with 7628 additions and 0 deletions

17
frontend/tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"files": [],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@src/*": ["src/*"],
"@components/*": ["src/components/*"],
"@styles/*": ["src/styles/*"],
"@atoms/*": ["src/components/atoms/*"],
"@molecules/*": ["src/components/molecules/*"],
"@organisms/*": ["src/components/organisms/*"],
"@templates/*": ["src/components/templates/*"]
}
},
"references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }]
}