kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/typescript/languageserver/vscode-extension/.vscode/launch.json (about) 1 // A launch configuration that compiles the extension and then opens it inside a new window 2 { 3 "version": "0.1.0", 4 "configurations": [ 5 6 { 7 "name": "Launch Extension", 8 "type": "extensionHost", 9 "request": "launch", 10 "runtimeExecutable": "${execPath}", 11 "args": [ "--extensionDevelopmentPath=${workspaceRoot}", "${workspaceRoot}/../../../../"], 12 "stopOnEntry": false, 13 "sourceMaps": true, 14 "outFiles": [ "${workspaceRoot}/dist/**/*.js" ], 15 "preLaunchTask": "npm" 16 }, 17 { 18 "name": "Launch Tests", 19 "type": "extensionHost", 20 "request": "launch", 21 "runtimeExecutable": "${execPath}", 22 "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ], 23 "stopOnEntry": false, 24 "sourceMaps": true, 25 "outFiles": [ "${workspaceRoot}/out/test/**/*.js" ], 26 "preLaunchTask": "npm" 27 } 28 ] 29 }