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