nestjs-paginate/.vscode/launch.json
2024-07-04 08:55:12 +08:00

24 lines
638 B
JSON

{
"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"
},
]
}