Files
lcbp3/.vscode/tasks.json.bak

82 lines
2.1 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Backend: Dev",
"type": "shell",
"command": "pnpm run start:dev",
"options": {
"cwd": "${workspaceFolder}/backend"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Backend: Build",
"type": "shell",
"command": "pnpm run build",
"options": {
"cwd": "${workspaceFolder}/backend"
},
"group": "build",
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Backend: Lint",
"type": "shell",
"command": "pnpm run lint",
"options": {
"cwd": "${workspaceFolder}/backend"
},
"group": {
"kind": "test",
"isDefault": true
},
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Backend: Test",
"type": "shell",
"command": "pnpm run test",
"options": {
"cwd": "${workspaceFolder}/backend"
},
"group": "test",
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Backend: Test E2E",
"type": "shell",
"command": "pnpm run test:e2e",
"options": {
"cwd": "${workspaceFolder}/backend"
},
"group": "test",
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "new"
}
}
]
}