SSL-Sniffer/.vscode/launch.json

17 lines
513 B
JSON
Raw Normal View History

2025-06-28 17:07:53 +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": [
{
"name": "Launch server",
"request": "launch",
"runtimeExecutable": "bun",
2025-06-30 11:53:06 +00:00
"runtimeArgs": ["run", "--bun", "dev", "--host"],
2025-06-28 17:07:53 +00:00
"skipFiles": ["<node_internals>/**"],
"type": "node",
2025-06-30 11:53:06 +00:00
"console": "integratedTerminal"
2025-06-28 17:07:53 +00:00
},
]
}