Files
ask262/.vscode/launch.json
T
2026-04-14 16:57:27 +05:30

42 lines
992 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug: MCP Server",
"type": "bun",
"request": "launch",
"program": "${workspaceFolder}/src/mcp-server.ts",
"cwd": "${workspaceFolder}",
"stopOnEntry": false,
"watchMode": false
},
{
"name": "Debug: Ingest",
"type": "bun",
"request": "launch",
"program": "${workspaceFolder}/src/setup/ingest.ts",
"cwd": "${workspaceFolder}",
"stopOnEntry": false,
"watchMode": false
},
{
"name": "Debug: Build Graph",
"type": "bun",
"request": "launch",
"program": "${workspaceFolder}/src/setup/buildGraph.ts",
"cwd": "${workspaceFolder}",
"stopOnEntry": false,
"watchMode": false
},
{
"name": "Debug Current File",
"type": "bun",
"request": "launch",
"program": "${file}",
"cwd": "${workspaceFolder}",
"stopOnEntry": false,
"watchMode": false
}
]
}