@rspack-canary/browser 1.7.0-canary-a0fc091c-20251217174017 → 1.7.0-canary-06f6b341-20251218173906

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.
@@ -461,7 +461,13 @@ export type Output = {
461
461
  /** An optional salt to update the hash. */
462
462
  hashSalt?: HashSalt;
463
463
  /**
464
- * Create async chunks that are loaded on demand.
464
+ * Controls whether dynamically imported modules are emitted as separate async chunks or bundled into
465
+ * existing chunks.
466
+ * - `true`: Modules loaded via `import()` are split into independent async chunks. These chunks are
467
+ * emitted as separate files and are loaded on demand at runtime. This enables code splitting and keeps
468
+ * the initial bundle smaller.
469
+ * - `false`: Dynamically imported modules are bundled into existing chunks instead of being emitted as
470
+ * separate files. No additional async chunk files are generated.
465
471
  * @default true
466
472
  * */
467
473
  asyncChunks?: AsyncChunks;