Files

16 lines
379 B
JSON
Raw Permalink Normal View History

2024-09-06 10:09:11 -04:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Action",
"type": "node",
"request": "launch",
"runtimeExecutable": "npx",
"cwd": "${workspaceRoot}",
2025-02-28 10:39:02 -05:00
"args": ["@github/local-action", ".", "src/main.ts", ".env"],
2024-09-06 10:09:11 -04:00
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**", "node_modules/**"]
}
]
}