26 lines
833 B
JSON
Raw Permalink Normal View History

2024-12-15 12:59:57 +00:00
{
// 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": "/usr/bin/deno",
2024-12-16 09:57:56 +00:00
"envFile": "${workspaceFolder}/.environment/.env",
2024-12-15 12:59:57 +00:00
"runtimeArgs": [
"run",
2024-12-16 09:57:56 +00:00
"--reload",
2024-12-15 12:59:57 +00:00
"--unstable",
"--inspect-wait",
"--allow-all"
],
"attachSimplePort": 9229
}
]
}