Skip to content

Commit

Permalink
hv helper
Browse files Browse the repository at this point in the history
  • Loading branch information
k-vilgelm committed Nov 21, 2018
1 parent 6e2a2ff commit 5784d30
Show file tree
Hide file tree
Showing 9 changed files with 799 additions and 623 deletions.
42 changes: 35 additions & 7 deletions .vscode/launch.json
@@ -1,15 +1,43 @@
// {
// "version": "0.2.0",
// "configurations": [

// {
// "name": "Current TS File",
// "type": "node",
// "request": "launch",
// "program": "${workspaceRoot}/node_modules/ts-node/dist/bin.js",
// "args": ["${relativeFile}"],
// "cwd": "${workspaceRoot}",
// "protocol": "inspector"
// }
// ]
// }
{
// 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": [

{
"name": "Current TS File",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/ts-node/dist/bin.js",
"args": ["${relativeFile}"],
"cwd": "${workspaceRoot}",
"protocol": "inspector"
}
"name": "Launch Program",
"program": "${workspaceFolder}/dist/hs/test.js",
"outFiles": [
"${workspaceFolder}/**/*.js"
],
"runtimeExecutable": "/Users/k-vilgelm/.nvs/node/10.4.1/x64/bin/node"
},
{
"type": "node",
"request": "launch",
"name": "pg/node",
"program": "${workspaceFolder}/pg/node/app.js",
"outFiles": [
"${workspaceFolder}/pg/node/*.js"
],
"runtimeExecutable": "/Users/k-vilgelm/.nvs/node/10.4.1/x64/bin/node"
},
]
}

0 comments on commit 5784d30

Please sign in to comment.