Files
vscode-extension-samples/lsp-multi-server-sample/.vscode/launch.json

38 lines
961 B
JSON
Raw Permalink Normal View History

{
"version": "0.2.0",
// List of configurations. Add new configurations or edit existing ones.
"configurations": [
{
"type": "extensionHost",
"request": "launch",
2018-06-04 14:26:18 +02:00
"name": "Launch Client",
"runtimeExecutable": "${execPath}",
2018-06-04 14:26:18 +02:00
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
2018-06-04 14:26:18 +02:00
"outFiles": ["${workspaceRoot}/client/out/**/*.js"],
2019-04-18 09:40:38 +02:00
"preLaunchTask": "npm: watch"
2018-06-04 14:26:18 +02:00
},
{
"type": "node",
"request": "attach",
2018-06-04 14:26:18 +02:00
"name": "Attach to Server 6011",
"address": "localhost",
"protocol": "inspector",
2017-10-31 10:34:06 +01:00
"port": 6011,
"sourceMaps": true,
2018-06-04 14:26:18 +02:00
"outFiles": ["${workspaceRoot}/server/out/**/*.js"]
2017-10-31 10:34:06 +01:00
},
{
"type": "node",
"request": "attach",
2018-06-04 14:26:18 +02:00
"name": "Attach to Server 6012",
"address": "localhost",
"protocol": "inspector",
2017-10-31 10:34:06 +01:00
"port": 6012,
"sourceMaps": true,
2018-06-04 14:26:18 +02:00
"outFiles": ["${workspaceRoot}/server/out/**/*.js"]
}
]
}