decktape/.vscode/launch.json

18 lines
570 B
JSON
Raw Normal View History

2017-08-18 01:27:16 +03:00
{
// 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": [
2017-09-24 22:29:18 +03:00
"http://remarkjs.com/", "test.pdf"
]
2017-08-18 01:27:16 +03:00
}
]
}