Get the absolute path to the current entrypoint
The Bun.main property contains the absolute path to the current entrypoint.
console.log(Bun.main);import "./foo.ts";The printed path is the file executed with bun run.
terminal
bun run index.ts/path/to/index.tsterminal
bun run foo.ts/path/to/foo.tsSee Utils.