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