Last active
September 11, 2021 02:19
-
-
Save GuilhermeSantos001/28d891995227ad47a75c1507bb11b6ff to your computer and use it in GitHub Desktop.
Arquivo de parametrização do Debug do Visual Studio Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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