Add code settings for Web UI
[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 "preLaunchTask": "Build",
13 "runtimeExecutable": "npm",
14 "runtimeArgs": ["run-script", "start:debug"],
15 "skipFiles": ["<node_internals>/**"],
16 "stopOnEntry": true
17 },
18 {
19 "type": "node",
20 "request": "launch",
21 "name": "Debug Simulator Development Build via npm",
22 "cwd": "${workspaceFolder}",
23 "runtimeExecutable": "npm",
24 "runtimeArgs": ["run-script", "start:dev:debug"],
25 "skipFiles": ["<node_internals>/**"],
26 "stopOnEntry": true
27 }
28 ]
29 }