Add example debug config for vscode

This commit is contained in:
Robbie Cahill
2023-02-14 20:22:38 +11:00
parent 1f9f93fc78
commit b299284ffd
+23
View File
@@ -0,0 +1,23 @@
{
// 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 Tunnelmole",
"program": "${workspaceFolder}/dist/src/index.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"args": [
"8001",
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"console":"internalConsole",
"internalConsoleOptions": "openOnSessionStart"
},
]
}