Files
Jellystat/.vscode/launch.json

34 lines
790 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://10.0.0.20:3000",
"webRoot": "${workspaceFolder}"
},
{
"type": "node-terminal",
"name": "Run Script: start",
"request": "launch",
"command": "npm run start",
"cwd": "${workspaceFolder}"
},
{
"type": "node-terminal",
"name": "Run Script: start client",
"request": "launch",
"command": "npm run start-client",
"cwd": "${workspaceFolder}"
},
{
"type": "node-terminal",
"name": "Run Script: start-server",
"request": "launch",
"command": "npm run start-server",
"cwd": "${workspaceFolder}"
}
]
}