Skip to content

Commit

Permalink
fix: ESM TypeScript types resolution (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hazmi35 authored Oct 2, 2022
1 parent 5136650 commit 46f33d6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"name": "KagChi"
},
"description": "A built-in queue plugin for beginner user",
"main": "dist/index.js",
"module": "dist/index.mjs",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"version": "0.3.4",
"license": "GPL-3.0",
Expand Down

0 comments on commit 46f33d6

Please sign in to comment.