mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 14:25:51 +00:00
30 lines
688 B
JSON
30 lines
688 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run VSCode IDE Bridge",
|
|
"type": "extensionHost",
|
|
"request": "launch",
|
|
"runtimeExecutable": "${execPath}",
|
|
"args": [
|
|
"--new-window",
|
|
"--disable-extensions",
|
|
"--extensionDevelopmentPath=${workspaceFolder}/packages/vscode-ide-bridge",
|
|
"${workspaceFolder}"
|
|
],
|
|
"outFiles": [
|
|
"${workspaceFolder}/packages/vscode-ide-bridge/dist/**/*.js"
|
|
],
|
|
"preLaunchTask": "Build VSCode IDE Bridge"
|
|
},
|
|
{
|
|
"type": "bun",
|
|
"request": "attach",
|
|
"name": "Attach to Claude Code",
|
|
"url": "ws://localhost:8888/2dc3gzl5xot",
|
|
"stopOnEntry": false,
|
|
"internalConsoleOptions": "neverOpen"
|
|
}
|
|
]
|
|
}
|