Skip to content

Commit

Permalink
Merge pull request #1323 from snyk/chore/add-vscode-config
Browse files Browse the repository at this point in the history
chore: add VS launch.json config
  • Loading branch information
JackuB committed Aug 25, 2020
2 parents 8799e45 + 9255e70 commit 0fa34f0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -24,4 +24,3 @@ report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
/test/acceptance/workspaces/**/project/
/test/acceptance/workspaces/**/target/
test/acceptance/workspaces/**/.gradle
.vscode
19 changes: 19 additions & 0 deletions .vscode/launch.json
@@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Tap Current File",
"console": "integratedTerminal",
"program": "${workspaceFolder}/node_modules/.bin/tap",
"args": [
"${relativeFile}",
"-Rspec",
"--timeout=300",
"--node-arg=-r",
"--node-arg=ts-node/register"
]
}
]
}

0 comments on commit 0fa34f0

Please sign in to comment.