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, 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" }