Skip to content

Commit

Permalink
chore: improve package.json exports
Browse files Browse the repository at this point in the history
  • Loading branch information
LwveMike committed Apr 17, 2024
1 parent ca09dc5 commit 1c9ef27
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/tacacs-plus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,14 @@
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.mjs",
Expand Down

0 comments on commit 1c9ef27

Please sign in to comment.