Add debug vscode config

This commit is contained in:
Barichello 2022-01-21 11:05:18 -03:00
parent 5db24c6871
commit c12ad09ae8
No known key found for this signature in database
GPG Key ID: 29197D315AE4FF67
1 changed files with 17 additions and 0 deletions

17
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Attach by Process ID",
"processId": "${command:PickProcess}",
"request": "attach",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node"
}
]
}