{ "version": "0.2.0", "configurations": [ { "name": "Run Extension (Copilot Bridge)", "type": "extensionHost", "request": "launch", "runtimeExecutable": "${execPath}", "args": [ "--extensionDevelopmentPath=${workspaceFolder}" ], "outFiles": [ "${workspaceFolder}/out/**/*.js" ], "preLaunchTask": "npm: compile", "env": { "BRIDGE_VERBOSE": "1" } }, { "name": "Run Extension + Attach Debug Server", "type": "extensionHost", "request": "launch", "runtimeExecutable": "${execPath}", "args": [ "--extensionDevelopmentPath=${workspaceFolder}" ], "outFiles": [ "${workspaceFolder}/out/**/*.js" ], "preLaunchTask": "npm: watch", "env": { "BRIDGE_VERBOSE": "1" } } ] }