Skip to content

Commit d89e63a

Browse files
committed
correct require() export
I'd meant to update the types to point to index.d.ts, and inadvertently changed the *export* to index.js instead, whoops. Re: #503
1 parent f82cb34 commit d89e63a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

+2-2
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-cjs.d.ts",
21-
"default": "./dist/cjs/index.js"
20+
"types": "./dist/cjs/index.d.ts",
21+
"default": "./dist/cjs/index-cjs.js"
2222
}
2323
}
2424
},

0 commit comments

Comments
 (0)