Minify production 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 9 "request": "launch",
fc201913 10 "name": "Debug Simulator via npm",
44b5e61d 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 21 "stopOnEntry": true
fc201913
JB
22 },
23 {
24 "type": "pwa-node",
25 "request": "launch",
26 "name": "Debug Simulator Development Build via npm",
27 "cwd": "${workspaceFolder}",
28 "runtimeExecutable": "npm",
29 "runtimeArgs": [
30 "run-script",
31 "start:dev:debug"
32 ],
33 "skipFiles": [
34 "<node_internals>/**"
35 ],
36 "stopOnEntry": true
44b5e61d
JB
37 }
38 ]
84393381 39}