Skip to content

Commit

Permalink
Create launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Wesli933 committed Jan 22, 2025
1 parent d8b1c63 commit e3f0892
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
// 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": [
{
"request": "launch",
"name": "Launch Program",
"type": "node",
"program": "${workspaceFolder}/main.ts",
"cwd": "${workspaceFolder}",
"env": {},
"runtimeExecutable": "deno",
"runtimeArgs": [
"run",
"--unstable",
"--inspect-brk",
"--allow-all"
],
"attachSimplePort": 9229
}
]
}

0 comments on commit e3f0892

Please sign in to comment.