ai-codereviewer/.vscode/launch.json

34 lines
No EOL
1 KiB
JSON

{
// 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": "Collect AI Feedback",
"type": "node",
"request": "launch",
"args": [
"src/exportComments.ts",
"--owner",
"cds-snc",
"--repos",
"notification-terraform",
"notification-manifests",
"--author",
"github-actions[bot]",
"--since",
"2024-12-01",
"--until",
"2024-12-08",
],
"runtimeArgs": [
"-r",
"ts-node/register"
],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
}
]
}