2017-09-04 16:10:02 +02:00
|
|
|
{
|
|
|
|
|
"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" ],
|
2017-09-27 20:52:26 -07:00
|
|
|
"preLaunchTask": "watch:client"
|
2017-09-04 16:10:02 +02:00
|
|
|
},
|
|
|
|
|
{
|
2017-10-31 10:34:06 +01:00
|
|
|
"name": "Attach to Server 11",
|
2017-09-04 16:10:02 +02:00
|
|
|
"type": "node",
|
|
|
|
|
"request": "attach",
|
2017-10-31 10:34:06 +01:00
|
|
|
"port": 6011,
|
2017-09-04 16:10:02 +02:00
|
|
|
"sourceMaps": true,
|
|
|
|
|
"outFiles": [ "${workspaceRoot}/client/server/**/*.js" ],
|
2017-09-27 20:52:26 -07:00
|
|
|
"preLaunchTask": "watch:server"
|
2017-10-31 10:34:06 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Attach to Server 12",
|
|
|
|
|
"type": "node",
|
|
|
|
|
"request": "attach",
|
|
|
|
|
"port": 6012,
|
|
|
|
|
"sourceMaps": true,
|
|
|
|
|
"outFiles": [ "${workspaceRoot}/client/server/**/*.js" ],
|
|
|
|
|
"preLaunchTask": "watch:server"
|
|
|
|
|
}
|
2017-09-04 16:10:02 +02:00
|
|
|
]
|
|
|
|
|
}
|