Skip to content

Commit

Permalink
Add VS code debug config
Browse files Browse the repository at this point in the history
  • Loading branch information
astefanutti committed Aug 25, 2017
1 parent 3d6b5af commit d6d6a01
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
*
/*
!.vscode
!libs
!plugins
!.dockerignore
Expand Down
21 changes: 21 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
// Use IntelliSense to learn about possible Node.js debug 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 Program",
"protocol": "inspector",
"program": "${workspaceRoot}/decktape.js",
"args": [
"http://astefanutti.github.io/further-cdi", "test.pdf"
],
"env": {
"NODE_PATH": "./libs"
}
}
]
}

0 comments on commit d6d6a01

Please sign in to comment.