Files
talk/.vscode/launch.json
T
2018-06-16 17:20:51 -06:00

22 lines
677 B
JSON

{
// 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 Program",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/node_modules/.bin/ts-node",
"args": [
"-r",
"tsconfig-paths/register",
"${workspaceFolder}/src/index.ts"
],
"outputCapture": "std"
}
]
}