Skip to content

Commit

Permalink
launch.json set config to launch debug
Browse files Browse the repository at this point in the history
  • Loading branch information
GiovannyJTT committed Sep 3, 2022
1 parent 686ec8e commit fe24b13
Showing 1 changed file with 20 additions and 16 deletions.
36 changes: 20 additions & 16 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,23 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch via NPM",
"request": "launch",
"runtimeArgs": [
"run-script",
"dev"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node",
"program": "${workspaceFolder}/src/index.js"
}
]
}
{
"type": "pwa-node",
"request": "launch",
"name": "smooth dragon in chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceRoot}",
"sourceMaps": true,
"trace": true,
"runtimeArgs": [
"run-script",
"dev"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
// "program": "${workspaceFolder}/src/index.js"
},
]
}

0 comments on commit fe24b13

Please sign in to comment.