Skip to content

Commit

Permalink
fix: could not find declaration file (fixes #558) (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
vpctorr committed May 10, 2023
1 parent 1c33515 commit ba3d159
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions package.json
Expand Up @@ -11,11 +11,13 @@
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./*": {
"require": "./dist/*.js",
"import": "./dist/*.mjs"
"import": "./dist/*.mjs",
"types": "./dist/*.d.ts"
}
},
"publishConfig": {
Expand Down

0 comments on commit ba3d159

Please sign in to comment.