Cleanup npm scripts
[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": [
7 {
af710091 8 "type": "node",
44b5e61d 9 "request": "launch",
fc201913 10 "name": "Debug Simulator via npm",
44b5e61d
JB
11 "cwd": "${workspaceFolder}",
12 "runtimeExecutable": "npm",
e7aeea18
JB
13 "runtimeArgs": ["run-script", "start:debug"],
14 "skipFiles": ["<node_internals>/**"],
44b5e61d 15 "stopOnEntry": true
fc201913
JB
16 },
17 {
af710091 18 "type": "node",
fc201913
JB
19 "request": "launch",
20 "name": "Debug Simulator Development Build via npm",
21 "cwd": "${workspaceFolder}",
22 "runtimeExecutable": "npm",
e7aeea18
JB
23 "runtimeArgs": ["run-script", "start:dev:debug"],
24 "skipFiles": ["<node_internals>/**"],
fc201913 25 "stopOnEntry": true
3e985d18
JB
26 },
27 {
28 "name": "Debug Simulator Unit Tests",
29 "type": "node",
30 "request": "attach",
31 "port": 9229,
32 "continueOnAttach": true,
33 "autoAttachChildProcesses": false,
34 "timeout": 30000,
35 "resolveSourceMapLocations": [
36 "!**/node_modules/**",
37 "!**/.vscode/extensions/hbenl.vscode-mocha-test-adapter-*/**"
38 ],
39 "skipFiles": ["<node_internals>/**"]
44b5e61d
JB
40 }
41 ]
84393381 42}