From f1f1a9df9f5a5a9c93dc1fcec136e0405346eeab Mon Sep 17 00:00:00 2001 From: Joachim Hill-Grannec Date: Mon, 29 Jan 2024 20:29:40 +0000 Subject: [PATCH 1/2] feat: add initial launch.json for vscode --- .vscode/launch.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..061baaf --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + // 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": "yarn pelostage", + "runtimeExecutable": "yarn", + "cwd": "${workspaceFolder}", + "runtimeArgs": ["dev"], + "skipFiles": [ + "/**" + ], + // "program": "${file}", + } + ] +} \ No newline at end of file From bef39900522e08b9bbe7a7de6b14da21b334d886 Mon Sep 17 00:00:00 2001 From: Joachim Hill-Grannec Date: Mon, 29 Jan 2024 20:30:02 +0000 Subject: [PATCH 2/2] feat: inital vscode launch.json --- .vscode/launch.json | 1 - 1 file changed, 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 061baaf..ea896cc 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -14,7 +14,6 @@ "skipFiles": [ "/**" ], - // "program": "${file}", } ] } \ No newline at end of file