From e3f08923e439ec6090ad0f902e84107009dddb95 Mon Sep 17 00:00:00 2001 From: Wesli933 Date: Thu, 23 Jan 2025 02:27:52 +0400 Subject: [PATCH] Create launch.json --- .vscode/launch.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..69a6c9b1d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,24 @@ +{ + // 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": [ + { + "request": "launch", + "name": "Launch Program", + "type": "node", + "program": "${workspaceFolder}/main.ts", + "cwd": "${workspaceFolder}", + "env": {}, + "runtimeExecutable": "deno", + "runtimeArgs": [ + "run", + "--unstable", + "--inspect-brk", + "--allow-all" + ], + "attachSimplePort": 9229 + } + ] +} \ No newline at end of file