File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -208,11 +208,15 @@ function buildExports(filepath: string): ConditionalExports {
208
208
types : {
209
209
module : `${ base } .d.mts` ,
210
210
'module-sync' : `${ base } .d.mts` ,
211
- node : `${ base } .d.ts` ,
211
+ bun : `${ base } .d.ts` ,
212
+ deno : `${ base } .d.mts` ,
213
+ node : `${ base } .d.mts` ,
212
214
require : `${ base } .d.ts` ,
213
215
default : `${ base } .d.mts` ,
214
216
} ,
215
217
module : `${ base } .mjs` ,
218
+ bun : `${ base } .mjs` ,
219
+ deno : `${ base } .mjs` ,
216
220
'module-sync' : `${ base } .mjs` ,
217
221
node : `${ base } .js` ,
218
222
require : `${ base } .js` ,
Original file line number Diff line number Diff line change @@ -251,6 +251,8 @@ export interface ConditionalExports extends BaseExports {
251
251
252
252
interface BaseExports {
253
253
module : string ;
254
+ bun : string ;
255
+ deno : string ;
254
256
'module-sync' : string ;
255
257
node : string ;
256
258
require : string ;
You can’t perform that action at this time.
0 commit comments