Skip to content

Commit

Permalink
Update launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Wesli933 committed Feb 4, 2025
1 parent e3f0892 commit fa2230d
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,67 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"name": "Launch Program",
"program": "${workspaceFolder}/app.js",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
},
{
"name": "Attach (Node)",
"port": 9229,
"request": "attach",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
},
{
"name": "Attach",
"port": 9229,
"request": "attach",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
},
{
"name": "Attach to Chrome",
"port": 9222,
"request": "attach",
"type": "chrome",
"webRoot": "${workspaceFolder}"
},

{
"name": "Docker .NET Attach (Preview)",
"type": "docker",
"request": "attach",
"platform": "netCore",
"webRoot": "${workspaceFolder}",
"sourceFileMap": {
"/src": "${workspaceFolder}"
}
},
{
"name": "Launch Program",
"webRoot": "${workspaceFolder}",
"program": "${workspaceFolder}/app.ts",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
},
{
"request": "launch",
"name": "Launch Program",
"type": "node",
"webRoot": "${workspaceFolder}",
"program": "${workspaceFolder}/main.ts",
"cwd": "${workspaceFolder}",
"env": {},
Expand Down

0 comments on commit fa2230d

Please sign in to comment.