Skip to content

Commit

Permalink
fix: add explicit .js extension for project module exporting
Browse files Browse the repository at this point in the history
  • Loading branch information
kien-ht committed Dec 18, 2023
1 parent 1738d5c commit c475531
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"exports": {
"./command": {
"types": "./types/command.d.ts",
"default": "./dist/command"
"default": "./dist/command.js"
},
"./plugin": {
"types": "./types/plugin.d.ts",
"default": "./dist/plugin"
"default": "./dist/plugin.js"
}
},
"files": ["dist", "types"],
Expand Down

0 comments on commit c475531

Please sign in to comment.