Skip to content

Commit

Permalink
fix(types): add missing types export directive to package file
Browse files Browse the repository at this point in the history
  • Loading branch information
fallenoak committed Nov 28, 2023
1 parent a5a9719 commit 00463cd
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 00463cd

Please sign in to comment.