You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
821 B

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Backend (ts-node-dev)",
"type": "node",
"request": "launch",
"runtimeExecutable": "npx",
"runtimeArgs": [
"ts-node-dev",
"--respawn",
"--transpile-only",
"src/app.ts"
],
"cwd": "${workspaceFolder}/backend",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"restart": true,
"protocol": "inspector"
},
{
"name": "Debug Backend (built)",
"type": "node",
"request": "launch",
"runtimeExecutable": "node",
"args": ["dist/app.js"],
"cwd": "${workspaceFolder}/backend",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"protocol": "inspector"
}
]
}