Files
jina-ai--reader/.vscode/tasks.json
T
wehub-resource-sync f1ba9c6c36
/ test (push) Failing after 1s
/ build-and-push-to-ghcr (push) Has been skipped
chore: import upstream snapshot with attribution
2026-07-13 12:23:39 +08:00

64 lines
1.7 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"group": "build",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"label": "Backend:rebuild",
"detail": "Backend:rebuild"
},
{
"type": "typescript",
"options": {
"cwd": "${workspaceFolder}"
},
"tsconfig": "tsconfig.json",
"option": "watch",
"isBackground": true,
"problemMatcher": [
"$tsc-watch"
],
"group": "build",
"label": "Backend:build:watch"
},
{
"label": "Backend:docker-compose:up",
"type": "shell",
"command": "docker",
"args": [
"compose",
"up"
],
"group": "build",
"isBackground": true,
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": {
"pattern": {
"regexp": ".*?"
},
"background": {
"activeOnStart": true,
"beginsPattern": "OKOKOK",
"endsPattern": ".*"
}
}
},
{
"label": "Backend:prepare",
"dependsOn": [
"Backend:docker-compose:up",
"Backend:build:watch"
],
}
]
}