diff --git a/packages/bun-types/bun.d.ts b/packages/bun-types/bun.d.ts index b45e9db2e5..e0135432b0 100644 --- a/packages/bun-types/bun.d.ts +++ b/packages/bun-types/bun.d.ts @@ -1970,6 +1970,26 @@ declare module "bun" { * @default true */ autoloadBunfig?: boolean; + /** + * Whether to autoload tsconfig.json when the standalone executable runs + * + * Standalone-only: applies only when building/running the standalone executable. + * + * Equivalent CLI flags: `--compile-autoload-tsconfig`, `--no-compile-autoload-tsconfig` + * + * @default false + */ + autoloadTsconfig?: boolean; + /** + * Whether to autoload package.json when the standalone executable runs + * + * Standalone-only: applies only when building/running the standalone executable. + * + * Equivalent CLI flags: `--compile-autoload-package-json`, `--no-compile-autoload-package-json` + * + * @default false + */ + autoloadPackageJson?: boolean; windows?: { hideConsole?: boolean; icon?: string;