mirror of
https://github.com/ChainSafe/lodestar.git
synced 2026-01-06 22:33:59 -05:00
**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`
14 lines
323 B
TOML
14 lines
323 B
TOML
[console]
|
|
# See https://bun.com/docs/runtime/bunfig#console-depth
|
|
depth = 3
|
|
|
|
[install]
|
|
# See https://bun.com/docs/runtime/bunfig#install-linker
|
|
# TODO revisit this once we move to bun-only and can use catalogues
|
|
linker = "hoisted"
|
|
|
|
[run]
|
|
# See https://bun.com/docs/runtime/bunfig#run-bun-auto-alias-node-to-bun
|
|
bun = true
|
|
|