Remove now uneeded vscode configuration
[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": "npm: 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 "preLaunchTask": "npm: build:dev",
24 "runtimeExecutable": "npm",
25 "runtimeArgs": ["run-script", "start:dev:debug"],
26 "skipFiles": ["<node_internals>/**"],
27 "stopOnEntry": true
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>/**"]
42 }
43 ]
44 }