mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-21 17:36:04 +00:00
feat: Add working launch.json file for debugging in VSCode
This commit is contained in:
parent
d5ff89d8bb
commit
5a8fee0c89
1 changed files with 24 additions and 0 deletions
24
.vscode/launch.json
vendored
Normal file
24
.vscode/launch.json
vendored
Normal file
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in a new issue