Update commands

This commit is contained in:
Colin McDonnell
2023-09-01 21:35:28 -07:00
parent 0019073c8a
commit 48cf9dddcb
3 changed files with 6 additions and 4 deletions

View File

@@ -9,3 +9,5 @@ const wss = new WebSocketServer({
perMessageDeflate: false,
});
wss;
debugger;

View File

@@ -67,7 +67,7 @@
"commands": [
{
"command": "extension.bun.runFile",
"title": "Run Bun",
"title": "Run File",
"shortTitle": "Run",
"category": "Bun",
"enablement": "!inDebugMode",
@@ -75,7 +75,7 @@
},
{
"command": "extension.bun.debugFile",
"title": "Debug Bun",
"title": "Debug File",
"shortTitle": "Debug",
"category": "Bun",
"enablement": "!inDebugMode",

View File

@@ -7,7 +7,7 @@ import { tmpdir } from "node:os";
const debugConfiguration: vscode.DebugConfiguration = {
type: "bun",
request: "launch",
name: "Debug Bun",
name: "Debug File",
program: "${file}",
cwd: "${workspaceFolder}",
stopOnEntry: false,
@@ -18,7 +18,7 @@ const debugConfiguration: vscode.DebugConfiguration = {
const runConfiguration: vscode.DebugConfiguration = {
type: "bun",
request: "launch",
name: "Run Bun",
name: "Run File",
program: "${file}",
cwd: "${workspaceFolder}",
noDebug: true,