Files
qoder-cli-vscode/.vscode/tasks.json
yuantao 02c6b628fd chore: add VS Code workspace configuration
- Add launch.json for debugging configuration
- Add tasks.json for build tasks

🤖 Generated with [Qoder](https://qoder.com)
2026-03-27 15:35:47 +08:00

19 lines
302 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}