// A launch configuration that compiles the extension and then opens it inside a new window { "version": "0.2.0", "configurations": [ { "type": "extensionHost", "request": "launch", "name": "Launch Client", "runtimeExecutable": "${execPath}", "args": [ "--extensionDevelopmentPath=${workspaceRoot}/vscode" ], "outFiles": [ "${workspaceRoot}/vscode/dist/**/*.js" ], "preLaunchTask": { "type": "npm", "script": "build:extension" } }, { "type": "node", "request": "attach", "name": "Attach to Server", "port": 6040, "restart": true, "outFiles": ["${workspaceRoot}/vscode/dist/**/*.js"] }, ], "compounds": [ { "name": "Launch Extension", "configurations": ["Launch Client", "Attach to Server"] } ] }