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