retag-nix-docker-image/.vscode/launch.json
Lucien Cartier-Tilet bad7aa8d3d
Some checks failed
Check Transpiled JavaScript / Check dist/ (push) Successful in 1m0s
Continuous Integration / TypeScript Tests (push) Successful in 1m1s
Continuous Integration / GitHub Actions Test (push) Successful in 17s
Lint Codebase / Lint Codebase (push) Failing after 1m7s
Initial commit
2025-01-19 18:45:07 +01:00

16 lines
371 B
JSON

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