bun-types 1.3.6-canary.20251228T140604 → 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.
- package/bun.d.ts +10 -0
- 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