build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / .vscode / launch.json
CommitLineData
7dde0b73 1{
44b5e61d
JB
2 // Use IntelliSense to learn about possible attributes.
3 // Hover to view descriptions of existing attributes.
4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 "version": "0.2.0",
6 "configurations": [
fc201913 7 {
af710091 8 "type": "node",
fc201913 9 "request": "launch",
881f450c 10 "name": "Debug Simulator Development Build via pnpm",
fc201913 11 "cwd": "${workspaceFolder}",
881f450c
JB
12 "runtimeExecutable": "pnpm",
13 "runtimeArgs": ["run", "start:dev:debug"],
e7aeea18 14 "skipFiles": ["<node_internals>/**"],
fc201913 15 "stopOnEntry": true
3e985d18
JB
16 },
17 {
18 "name": "Debug Simulator Unit Tests",
19 "type": "node",
20 "request": "attach",
21 "port": 9229,
22 "continueOnAttach": true,
23 "autoAttachChildProcesses": false,
24 "timeout": 30000,
6c43b441 25 "resolveSourceMapLocations": ["!**/node_modules/**"],
3e985d18 26 "skipFiles": ["<node_internals>/**"]
44b5e61d
JB
27 }
28 ]
84393381 29}