mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
27 lines
708 B
JSON
27 lines
708 B
JSON
{
|
|
"version": "0.2.0",
|
|
// List of configurations. Add new configurations or edit existing ones.
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Client",
|
|
"type": "extensionHost",
|
|
"request": "launch",
|
|
"runtimeExecutable": "${execPath}",
|
|
"args": ["--extensionDevelopmentPath=${workspaceRoot}/client" ],
|
|
"stopOnEntry": false,
|
|
"sourceMaps": true,
|
|
"outFiles": [ "${workspaceRoot}/client/out/src/**/*.js" ],
|
|
"preLaunchTask": "watch:client"
|
|
},
|
|
{
|
|
"name": "Attach to Server",
|
|
"type": "node",
|
|
"request": "attach",
|
|
"port": 6009,
|
|
"sourceMaps": true,
|
|
"outFiles": [ "${workspaceRoot}/client/server/**/*.js" ],
|
|
"preLaunchTask": "watch:server"
|
|
}
|
|
]
|
|
}
|