bun-types 1.3.3-canary.20251118T140713 → 1.3.3-canary.20251119T140729
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bun.d.ts +20 -0
- package/package.json +1 -1
package/bun.d.ts
CHANGED
|
@@ -1933,6 +1933,26 @@ declare module "bun" {
|
|
|
1933
1933
|
execArgv?: string[];
|
|
1934
1934
|
executablePath?: string;
|
|
1935
1935
|
outfile?: string;
|
|
1936
|
+
/**
|
|
1937
|
+
* Whether to autoload .env files when the standalone executable runs
|
|
1938
|
+
*
|
|
1939
|
+
* Standalone-only: applies only when building/running the standalone executable.
|
|
1940
|
+
*
|
|
1941
|
+
* Equivalent CLI flags: `--compile-autoload-dotenv`, `--no-compile-autoload-dotenv`
|
|
1942
|
+
*
|
|
1943
|
+
* @default true
|
|
1944
|
+
*/
|
|
1945
|
+
autoloadDotenv?: boolean;
|
|
1946
|
+
/**
|
|
1947
|
+
* Whether to autoload bunfig.toml when the standalone executable runs
|
|
1948
|
+
*
|
|
1949
|
+
* Standalone-only: applies only when building/running the standalone executable.
|
|
1950
|
+
*
|
|
1951
|
+
* Equivalent CLI flags: `--compile-autoload-bunfig`, `--no-compile-autoload-bunfig`
|
|
1952
|
+
*
|
|
1953
|
+
* @default true
|
|
1954
|
+
*/
|
|
1955
|
+
autoloadBunfig?: boolean;
|
|
1936
1956
|
windows?: {
|
|
1937
1957
|
hideConsole?: boolean;
|
|
1938
1958
|
icon?: string;
|
package/package.json
CHANGED