Skip to content

Commit

Permalink
feat: launch config for bun
Browse files Browse the repository at this point in the history
  • Loading branch information
sanriodev committed Apr 2, 2024
1 parent 3da1fdf commit 259d333
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@
"<node_internals>/**"
]
},
{
"type": "node",
"request": "launch",
"name": "[bun] start",
"runtimeExecutable": "bun",
"console": "integratedTerminal",
"envFile": "${workspaceFolder}/.env",
"runtimeArgs": [
"run",
"start:debug"
],
"skipFiles": [
"<node_internals>/**"
]
},
{
"type": "node",
"request": "launch",
Expand All @@ -33,6 +48,21 @@
"skipFiles": [
"<node_internals>/**"
]
},
{
"type": "node",
"request": "launch",
"name": "[bun] start:dev",
"runtimeExecutable": "bun",
"console": "integratedTerminal",
"envFile": "${workspaceFolder}/.env.dev",
"runtimeArgs": [
"run",
"start:debug"
],
"skipFiles": [
"<node_internals>/**"
]
}
]
}

0 comments on commit 259d333

Please sign in to comment.