bun-types 1.3.6-canary.20251227T140550 → 1.3.6-canary.20251229T140700

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.
Files changed (2) hide show
  1. package/bun.d.ts +10 -0
  2. package/package.json +1 -1
package/bun.d.ts CHANGED
@@ -1942,6 +1942,16 @@ declare module "bun" {
1942
1942
  development?: boolean;
1943
1943
  };
1944
1944
 
1945
+ /**
1946
+ * Enable React Fast Refresh transform.
1947
+ *
1948
+ * This adds the necessary code transformations for React Fast Refresh (hot module
1949
+ * replacement for React components), but does not emit hot-module code itself.
1950
+ *
1951
+ * @default false
1952
+ */
1953
+ reactFastRefresh?: boolean;
1954
+
1945
1955
  outdir?: string;
1946
1956
  }
1947
1957
 
package/package.json CHANGED
@@ -33,5 +33,5 @@
33
33
  "bun.js",
34
34
  "types"
35
35
  ],
36
- "version": "1.3.6-canary.20251227T140550"
36
+ "version": "1.3.6-canary.20251229T140700"
37
37
  }