easyai-ai-gateway/apps/web/project.json
wangbo 6323e70e49 Initial project scaffold
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-09 14:36:35 +08:00

39 lines
814 B
JSON

{
"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"
}
}
}
}