41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "ng serve",
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"preLaunchTask": "npm: start",
|
|
"url": "http://localhost:4200/"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Debug Nest Framework",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": ["run", "start:debug", "--", "--inspect-brk"],
|
|
"autoAttachChildProcesses": true,
|
|
"restart": true,
|
|
"sourceMaps": true,
|
|
"stopOnEntry": false,
|
|
"console": "integratedTerminal",
|
|
"env": {
|
|
"HOST_NAME": "localhost"
|
|
}
|
|
},
|
|
{
|
|
"name": "Debug NestJS API",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeExecutable": "npx",
|
|
"runtimeArgs": ["nest", "start", "--debug", "--watch"],
|
|
"port": 9229,
|
|
"cwd": "${workspaceFolder}/api",
|
|
"envFile": "${workspaceFolder}/api/.env",
|
|
"console": "integratedTerminal",
|
|
"skipFiles": ["<node_internals>/**"]
|
|
}
|
|
]
|
|
}
|