From 1c2f203a340ef1c530365cc1592c326325836ca3 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Fri, 20 Mar 2026 13:22:00 +0530 Subject: [PATCH] feat: add initial VSCode settings for Bun configuration --- .vscode/settings.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..f95a89c --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,16 @@ +{ + // The path to the `bun` executable. + "bun.runtime": "/path/to/bun", + + // If support for Bun should be added to the default "JavaScript Debug Terminal". + "bun.debugTerminal.enabled": true, + + // If the debugger should stop on the first line of the program. + "bun.debugTerminal.stopOnEntry": false, + + // Glob pattern to find test files. Defaults to the value shown below. + "bun.test.filePattern": "**/*{.test.,.spec.,_test_,_spec_}{js,ts,tsx,jsx,mts,cts,cjs,mjs}", + + // The custom script to call for testing instead of `bun test` + "bun.test.customScript": "bun test", +} \ No newline at end of file