From 7b4a9e2a9fe0b8f583f9c6442386c6cd32abd303 Mon Sep 17 00:00:00 2001 From: bluwy Date: Sat, 16 May 2026 02:23:55 +0800 Subject: [PATCH 1/2] Update vscode settings --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 25fa6215..b6a93fc5 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,4 @@ { - "typescript.tsdk": "node_modules/typescript/lib" + "js/ts.tsdk.path": "node_modules/typescript/lib", + "editor.defaultFormatter": "oxc.oxc-vscode" } From ad2058d2d2424c06c164bdc18c2c1a58fdcb94de Mon Sep 17 00:00:00 2001 From: bluwy Date: Sat, 16 May 2026 02:24:37 +0800 Subject: [PATCH 2/2] Update launch.json --- .vscode/launch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index cdc425da..5a4e6d3b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,5 +1,4 @@ { - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { @@ -7,6 +6,7 @@ "request": "launch", "name": "Debug Current Test File", "autoAttachChildProcesses": true, + "skipFiles": [], "program": "${workspaceRoot}/node_modules/vitest/vitest.mjs", "args": ["run", "${relativeFile}"], "smartStep": true,