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