initial commit

This commit is contained in:
2026-04-04 22:13:55 -04:00
commit 5d77e207c9
10181 changed files with 522212 additions and 0 deletions

18
apps/Frontend/tsconfig.json Executable file
View File

@@ -0,0 +1,18 @@
{
"extends": "@repo/typescript-config/base.json",
"compilerOptions": {
"moduleResolution": "node",
"module": "ESNext",
"jsx": "preserve",
"baseUrl": ".", // This tells TypeScript where to start resolving paths
"paths": {
"@/*": ["src/*"] // The @ alias will point to src folder inside the Frontend app
}
},
"include": [
"**/*.ts",
"**/*.tsx",
],
"exclude": ["node_modules"]
}