From 16032c128f6494c1a161e3bfa617bfabcc9eba59 Mon Sep 17 00:00:00 2001 From: vovaliolik <116453589+vovaliolik@users.noreply.github.com> Date: Sat, 9 Sep 2023 01:03:39 +0000 Subject: [PATCH 1/2] Main 1 --- .vscode/extensions.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .vscode/extensions.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..cdfa3ec --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "xuangeaha.vsmarketplace-badges" + ] +} \ No newline at end of file From 0e49c0033419cc57f5c7c225fc3f0a1aa4863c82 Mon Sep 17 00:00:00 2001 From: vovaliolik <116453589+vovaliolik@users.noreply.github.com> Date: Sat, 9 Sep 2023 06:12:28 +0300 Subject: [PATCH 2/2] 15 --- .vscode/launch.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..ccdfadb --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + // 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}", + "runtimeExecutable": "deno", + "runtimeArgs": [ + "run", + "--inspect-brk", + "--allow-all" + ], + "attachSimplePort": 9229 + } + ] +} \ No newline at end of file