Skip to content

Commit a4fa1f8

Browse files
committed
actually fix cjs require() default export
Missed a step. #189 (comment)
1 parent 04ab899 commit a4fa1f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"default": "./dist/mjs/index.js"
1818
},
1919
"require": {
20-
"types": "./dist/cjs/index.d.ts",
21-
"default": "./dist/cjs/index.js"
20+
"types": "./dist/cjs/index-cjs.d.ts",
21+
"default": "./dist/cjs/index-cjs.js"
2222
}
2323
}
2424
},

0 commit comments

Comments
 (0)