-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbunfig.toml
35 lines (25 loc) · 879 Bytes
/
bunfig.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[install]
# @see https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-npm-registry
# registry = "https://npm.pkg.github.com"
# whether to install optionalDependencies
optional = true
# whether to install devDependencies
dev = true
# whether to install peerDependencies
peer = false
# equivalent to `--production` flag
production = false
# equivalent to `--dry-run` flag
dryRun = false
# where `bun install --global` installs packages
globalDir = "~/.bun/install/global"
# where globally-installed package bins are linked
globalBinDir = "~/.bun/bin"
[install.cache]
# the directory to use for the cache
dir = "~/.bun/install/cache"
# when true, don't load from the global cache.
# Bun may still write to node_modules/.cache
disable = false
# when true, always resolve the latest versions from the registry
disableManifest = false