.vscode/launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Server",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}/server",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "start:debug"],
"restart": true,
"timeout": 30000,
"sourceMaps": true,
"outputCapture": "std",
"env": {
"NODE_ENV": "development"
},
"console": "integratedTerminal"
},
{
"name": "Debug Client",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/src",
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
}
]
}