Files
LuaMicroservices/frontend/alpinejs/.vscode/launch.json
Christian van Dijk 94b4f31102
Some checks failed
CI / Lint (push) Failing after 39s
CI / Build (push) Has been skipped
CI / Test (push) Has been skipped
CI / Helm Lint (push) Successful in 13s
🎉 initial commit
2026-02-23 09:47:16 +01:00

36 lines
734 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Run app",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "deno",
"runtimeArgs": [
"run",
"--inspect",
"--allow-net",
"--allow-read",
"--allow-write",
"--allow-env",
"--watch",
"main.ts"
],
"attachSimplePort": 9229,
"console": "integratedTerminal",
"serverReadyAction": {
"action": "startDebugging",
"pattern": "URL: http",
"name": "client"
}
},
{
"name": "client",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8000"
}
]
}