mirror of
https://github.com/biersoeckli/QuickStack.git
synced 2026-01-05 02:59:54 -06:00
17 lines
568 B
JSON
17 lines
568 B
JSON
{
|
|
// The path to the `bun` executable.
|
|
"bun.runtime": "/home/node/.bun/bin/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,
|
|
"java.compile.nullAnalysis.mode": "automatic",
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"files.exclude": {
|
|
"**/.DS_Store": true,
|
|
},
|
|
"search.exclude": {
|
|
},
|
|
"files.trimTrailingWhitespace": true,
|
|
"prettier.singleQuote": true,
|
|
} |