Cleanup npm scripts
[e-mobility-charging-stations-simulator.git] / .vscode / launch.json
1 {
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 {
8 "type": "node",
9 "request": "launch",
10 "name": "Debug Simulator via npm",
11 "cwd": "${workspaceFolder}",
12 "runtimeExecutable": "npm",
13 "runtimeArgs": ["run-script", "start:debug"],
14 "skipFiles": ["<node_internals>/**"],
15 "stopOnEntry": true
16 },
17 {
18 "type": "node",
19 "request": "launch",
20 "name": "Debug Simulator Development Build via npm",
21 "cwd": "${workspaceFolder}",
22 "runtimeExecutable": "npm",
23 "runtimeArgs": ["run-script", "start:dev:debug"],
24 "skipFiles": ["<node_internals>/**"],
25 "stopOnEntry": true
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>/**"]
40 }
41 ]
42 }