bun-types 1.1.22-canary.20240801T140518 → 1.1.22-canary.20240802T140513
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
|
@@ -1589,6 +1589,16 @@ declare module "bun" {
|
|
|
1589
1589
|
syntax?: boolean;
|
|
1590
1590
|
identifiers?: boolean;
|
|
1591
1591
|
};
|
|
1592
|
+
/**
|
|
1593
|
+
* Ignore dead code elimination/tree-shaking annotations such as @__PURE__ and package.json
|
|
1594
|
+
* "sideEffects" fields. This should only be used as a temporary workaround for incorrect
|
|
1595
|
+
* annotations in libraries.
|
|
1596
|
+
*/
|
|
1597
|
+
ignoreDCEAnnotations?: boolean;
|
|
1598
|
+
/**
|
|
1599
|
+
* Force emitting @__PURE__ annotations even if minify.whitespace is true.
|
|
1600
|
+
*/
|
|
1601
|
+
emitDCEAnnotations?: boolean;
|
|
1592
1602
|
// treeshaking?: boolean;
|
|
1593
1603
|
|
|
1594
1604
|
// jsx?:
|
package/package.json
CHANGED