mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-23 00:35:51 +00:00
48 lines
867 B
JSON
48 lines
867 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build VSCode IDE Bridge",
|
|
"type": "shell",
|
|
"command": "bunx",
|
|
"args": [
|
|
"tsc",
|
|
"-p",
|
|
"tsconfig.json"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"group": "build",
|
|
"problemMatcher": "$tsc"
|
|
},
|
|
{
|
|
"label": "Test VSCode IDE Bridge",
|
|
"type": "shell",
|
|
"command": "bun",
|
|
"args": [
|
|
"test",
|
|
"test"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Package VSCode IDE Bridge",
|
|
"type": "shell",
|
|
"command": "bun",
|
|
"args": [
|
|
"run",
|
|
"package"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"group": "build",
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|