@koalarx/nest-cli
Version:
Biblioteca de CLI para criação de projetos utilizando Koala Nest
27 lines (26 loc) • 616 B
JSON
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Nest Debug (Bun)",
"runtimeExecutable": "bun",
"runtimeArgs": [
"run",
"start:debug"
],
"console": "integratedTerminal",
"restart": true,
"autoAttachChildProcesses": true
},
{
"type": "bun",
"request": "launch",
"name": "Debug Bun File",
"program": "${file}", // This runs the currently active file
"cwd": "${workspaceFolder}",
"stopOnEntry": false // Set to true to pause on the first line
},
]
}