bun-types-no-globals 1.3.8-canary.20260131T140819 → 1.3.8-canary.20260201T140941

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/lib/bun.d.ts +4 -1
  2. package/package.json +1 -1
package/lib/bun.d.ts CHANGED
@@ -2594,7 +2594,10 @@ declare module "bun" {
2594
2594
  * start times, but will make the final output larger and slightly increase
2595
2595
  * memory usage.
2596
2596
  *
2597
- * Bytecode is currently only supported for CommonJS (`format: "cjs"`).
2597
+ * - CommonJS: works with or without `compile: true`
2598
+ * - ESM: requires `compile: true`
2599
+ *
2600
+ * Without an explicit `format`, defaults to CommonJS.
2598
2601
  *
2599
2602
  * Must be `target: "bun"`
2600
2603
  * @default false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bun-types-no-globals",
3
- "version": "1.3.8-canary.20260131T140819",
3
+ "version": "1.3.8-canary.20260201T140941",
4
4
  "main": "./generator/index.ts",
5
5
  "types": "./lib/index.d.ts",
6
6
  "description": "TypeScript type definitions for Bun without global types pollution",