From 259d3339c4deebc38596ab22b2b1d945879ac122 Mon Sep 17 00:00:00 2001 From: matteom0165 Date: Tue, 2 Apr 2024 17:56:20 +0200 Subject: [PATCH] feat: launch config for bun --- .vscode/launch.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 0fe3ed5..bdc88ca 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -19,6 +19,21 @@ "/**" ] }, + { + "type": "node", + "request": "launch", + "name": "[bun] start", + "runtimeExecutable": "bun", + "console": "integratedTerminal", + "envFile": "${workspaceFolder}/.env", + "runtimeArgs": [ + "run", + "start:debug" + ], + "skipFiles": [ + "/**" + ] + }, { "type": "node", "request": "launch", @@ -33,6 +48,21 @@ "skipFiles": [ "/**" ] + }, + { + "type": "node", + "request": "launch", + "name": "[bun] start:dev", + "runtimeExecutable": "bun", + "console": "integratedTerminal", + "envFile": "${workspaceFolder}/.env.dev", + "runtimeArgs": [ + "run", + "start:debug" + ], + "skipFiles": [ + "/**" + ] } ] } \ No newline at end of file