Files
ai-inference/.vscode/launch.json
Sean Goedecke 0905e36402 Initial commit
2025-04-04 07:27:58 +11:00

16 lines
379 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Action",
"type": "node",
"request": "launch",
"runtimeExecutable": "npx",
"cwd": "${workspaceRoot}",
"args": ["@github/local-action", ".", "src/main.ts", ".env"],
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**", "node_modules/**"]
}
]
}