From 78ff7697d2adfab122577ec7131338e381404909 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Fri, 2 Feb 2024 20:03:26 -0600 Subject: [PATCH] feat: Add working launch.json file for debugging in VSCode --- .vscode/launch.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..dd0f4c8 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,24 @@ +{ + // 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": [ + { + "type": "node", + "request": "launch", + "name": "Launch Action", + "program": "${workspaceFolder}/src/main.ts", + "preLaunchTask": "tsc: build - tsconfig.json", + "outFiles": ["${workspaceFolder}/lib/**/*.js"], + "env": { + "INPUT_ALL": "false", + "INPUT_VERSION": "latest", + "INPUT_TOKEN": "${env:GITHUB_TOKEN}", + "INPUT_COOLDOWN": "60", + "INPUT_MAX_RETRIES": "3", + "RUNNER_TEMP": "${workspaceFolder}/.tmp" + } + } + ] +}