mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 14:25:51 +00:00
61 lines
1.1 KiB
JSON
61 lines
1.1 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build VSCode IDE Bridge",
|
|
"type": "shell",
|
|
"command": "bunx",
|
|
"args": [
|
|
"tsc",
|
|
"-p",
|
|
"packages/vscode-ide-bridge/tsconfig.json"
|
|
],
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"clear": true
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Test VSCode IDE Bridge",
|
|
"type": "shell",
|
|
"command": "bun",
|
|
"args": [
|
|
"test",
|
|
"packages/vscode-ide-bridge/test"
|
|
],
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"clear": true
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Start Claude Code TUI",
|
|
"type": "shell",
|
|
"command": "bun run dev:inspect",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"focus": true,
|
|
"panel": "dedicated",
|
|
"clear": true
|
|
},
|
|
"problemMatcher": {
|
|
"pattern": {
|
|
"regexp": "^$"
|
|
},
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": ".*Bun Inspector.*",
|
|
"endsPattern": ".*Listening:.*"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|