2019-11-15 19:19:44 +01:00
|
|
|
// 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=${workspaceFolder}" ],
|
2022-12-06 15:31:35 -08:00
|
|
|
"autoAttachChildProcesses": true,
|
2019-11-15 19:19:44 +01:00
|
|
|
"sourceMaps": true,
|
2023-12-18 15:03:26 +01:00
|
|
|
"outFiles": [
|
|
|
|
|
"${workspaceRoot}/client/out/**/*.js",
|
|
|
|
|
"${workspaceRoot}/server/out/**/*.js"
|
|
|
|
|
],
|
2019-11-15 19:19:44 +01:00
|
|
|
"preLaunchTask": "npm: watch"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|