Initial project scaffold

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-09 14:36:35 +08:00
co-authored by Cursor
commit 6323e70e49
39 changed files with 8664 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
{
"name": "web",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"root": "apps/web",
"sourceRoot": "apps/web/src",
"projectType": "application",
"targets": {
"dev": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/web",
"command": "pnpm dev"
}
},
"build": {
"executor": "nx:run-commands",
"outputs": ["{projectRoot}/dist"],
"options": {
"cwd": "apps/web",
"command": "pnpm build"
}
},
"lint": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/web",
"command": "pnpm typecheck"
}
},
"test": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/web",
"command": "pnpm typecheck"
}
}
}
}