Skip to content

Commit 21fbdc9

Browse files
authored
chore: add bunfig.toml (#8551)
**Motivation** - #7280 **Description** - set some basic options for this project - increase console depth - bun 1.3, added isolated installs, which are cool, but we want the simpler hoisted installs for now - alias `node` as `bun` when running `bun run`
1 parent 152445e commit 21fbdc9

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

bunfig.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[console]
2+
# See https://bun.com/docs/runtime/bunfig#console-depth
3+
depth = 3
4+
5+
[install]
6+
# See https://bun.com/docs/runtime/bunfig#install-linker
7+
# TODO revisit this once we move to bun-only and can use catalogues
8+
linker = "hoisted"
9+
10+
[run]
11+
# See https://bun.com/docs/runtime/bunfig#run-bun-auto-alias-node-to-bun
12+
bun = true
13+

0 commit comments

Comments
 (0)