-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbunfig.toml
More file actions
24 lines (20 loc) · 649 Bytes
/
bunfig.toml
File metadata and controls
24 lines (20 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[test]
# always enable coverage
coverage = true
coverageSkipTestFiles = true
coverageIgnoreSourcemaps = true
# to set different thresholds for lines and functions
coverageThreshold = { line = 0.9, function = 0.8 }
[install]
# whether to install optionalDependencies
optional = true
# whether to install devDependencies
dev = true
# whether to install peerDependencies
peer = true
[debug]
# When navigating to a blob: or src: link, open the file in your editor
# If not, it tries $EDITOR or $VISUAL
# If that still fails, it will try Visual Studio Code, then Sublime Text, then a few others
# This is used by Bun.openInEditor()
editor = "vscode"