Skip to content

Commit

Permalink
chore: update launch json
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-shopopop committed Oct 27, 2024
1 parent 5d380ec commit f318e80
Showing 1 changed file with 23 additions and 13 deletions.
36 changes: 23 additions & 13 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Deno",
"type": "pwa-node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "deno",
"runtimeArgs": ["run", "--inspect-brk", "-A", "${file}"],
"attachSimplePort": 9229
}
]
}
// Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
// Pointez pour afficher la description des attributs existants.
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"request": "launch",
"name": "Launch Program",
"type": "node",
"program": "${workspaceFolder}/mod.ts",
"cwd": "${workspaceFolder}",
"env": {},
"runtimeExecutable": "/usr/local/bin/deno",
"runtimeArgs": [
"run",
"--unstable",
"--inspect-wait",
"--allow-all"
],
"attachSimplePort": 9229
}
]
}

0 comments on commit f318e80

Please # to comment.