From 60fcb19769d94394c456771fd79da26d4ffb2ee7 Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Sat, 6 Sep 2025 14:34:30 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E4=BF=AE=E6=94=B9=E8=AA=BF=E8=A9=A6?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 4 ++-- deno.jsonc | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 0f1aacf..a07d000 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,8 +5,8 @@ "version": "0.2.0", "configurations": [ { - "command": "deno task main", - "name": "Run deno task main", + "command": "deno task debug", + "name": "Run deno task debug", "request": "launch", "type": "node-terminal", }, diff --git a/deno.jsonc b/deno.jsonc index f6d080e..f1c7748 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -1,6 +1,7 @@ { "tasks": { "main": "deno run --allow-read --allow-write --allow-env --allow-net --allow-sys ./server/main.ts", + "debug": "deno run --watch --allow-read --allow-write --allow-env --allow-net --allow-sys ./server/main.ts", "test": "deno run --allow-read --allow-write --allow-env --allow-net ./server/main_test.ts" }, "imports": {