Skip to content

Commit

Permalink
fix: add missing types export to package
Browse files Browse the repository at this point in the history
  • Loading branch information
fallenoak committed Dec 27, 2023
1 parent 20e7ede commit dfd24b7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
Expand Down

0 comments on commit dfd24b7

Please sign in to comment.