diff --git a/.vscode/launch.json.example b/.vscode/launch.json.example new file mode 100644 index 0000000..c37f00c --- /dev/null +++ b/.vscode/launch.json.example @@ -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" + }, + ] +} \ No newline at end of file