nestjs-paginate/.vscode/launch.json

24 lines
638 B
JSON
Raw Normal View History

2024-07-04 00:55:12 +00:00
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Test Debug",
"runtimeExecutable": "npm",
"runtimeArgs": [
"--preserve-symlinks",
"run",
"test",
"--",
"--inspect-brk",
],
"console": "integratedTerminal",
"restart": true,
"sourceMaps": true,
"cwd": "${workspaceRoot}",
"autoAttachChildProcesses": true,
"envFile": "${workspaceFolder}/.env"
},
]
}