mirror of
https://github.com/bendtherules/opencode-multi-model.git
synced 2026-08-18 21:52:11 +00:00
17 lines
580 B
JSON
17 lines
580 B
JSON
{
|
|
// 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"
|
|
}
|