bun-types 1.1.15-canary.20240620T140511 → 1.1.16-canary.20240621T140454
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 +1 -1
- package/package.json +1 -1
package/bun.d.ts
CHANGED
|
@@ -1572,7 +1572,7 @@ declare module "bun" {
|
|
|
1572
1572
|
define?: Record<string, string>;
|
|
1573
1573
|
// origin?: string; // e.g. http://mydomain.com
|
|
1574
1574
|
loader?: { [k in string]: Loader };
|
|
1575
|
-
sourcemap?: "none" | "inline" | "external"; // default: "none"
|
|
1575
|
+
sourcemap?: "none" | "linked" | "inline" | "external"; // default: "none", true -> "inline"
|
|
1576
1576
|
/**
|
|
1577
1577
|
* package.json `exports` conditions used when resolving imports
|
|
1578
1578
|
*
|
package/package.json
CHANGED