Skip to content

Instantly share code, notes, and snippets.

@GuilhermeSantos001
Last active September 11, 2021 02:19
Show Gist options
  • Select an option

  • Save GuilhermeSantos001/28d891995227ad47a75c1507bb11b6ff to your computer and use it in GitHub Desktop.

Select an option

Save GuilhermeSantos001/28d891995227ad47a75c1507bb11b6ff to your computer and use it in GitHub Desktop.
Arquivo de parametrização do Debug do Visual Studio Code
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"name": "Application",
"request": "attach",
"protocol": "inspector",
"port": 9329,
"restart": true,
"skipFiles": [
"<node_internals>/**"
]
},
{
"type": "node",
"name": "GraphQL",
"request": "attach",
"protocol": "inspector",
"port": 9239,
"restart": true,
"skipFiles": [
"<node_internals>/**"
]
},
{
"name": "Launch Chrome",
"request": "launch",
"type": "pwa-chrome",
"url": "http://192.168.0.???:???",
"webRoot": "${workspaceFolder}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment