Merge pull request #8 from LucasBrazi06/build
[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 {
d3c1e860 8 "type": "pwa-node",
44b5e61d
JB
9 "request": "launch",
10 "name": "Debug Program via npm",
11 "cwd": "${workspaceFolder}",
bf1866b2 12 "preLaunchTask": "Build",
44b5e61d
JB
13 "runtimeExecutable": "npm",
14 "runtimeArgs": [
15 "run-script",
bf1866b2 16 "start:debug"
44b5e61d 17 ],
d3c1e860
JB
18 "skipFiles": [
19 "<node_internals>/**"
20 ],
44b5e61d
JB
21 "stopOnEntry": true
22 }
23 ]
84393381 24}