(key: string)
| 139 | } satisfies Record<BunTargetKey, Bun.Build.CompileTarget>; |
| 140 | |
| 141 | const isBunTargetKey = (key: string): key is BunTargetKey => |
| 142 | bunTargetKeys.includes(key as BunTargetKey); |
| 143 | |
| 144 | const bunTarget = (t: Target): Bun.Build.CompileTarget => { |
| 145 | const key = [t.os, t.arch, t.abi].filter(Boolean).join("-"); |