From 21fbdc95266e4023c3c1872ea9c57aa71b09f457 Mon Sep 17 00:00:00 2001 From: Cayman Date: Mon, 20 Oct 2025 14:09:58 -0400 Subject: [PATCH] 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` --- bunfig.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bunfig.toml diff --git a/bunfig.toml b/bunfig.toml new file mode 100644 index 0000000000..2cb80ce22c --- /dev/null +++ b/bunfig.toml @@ -0,0 +1,13 @@ +[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 +