Skip to content

Commit

Permalink
Put types first in exports (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann committed Jan 20, 2023
1 parent c87d5eb commit f90bf6d
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 @@ -19,9 +19,9 @@
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"import": "./dist/magic-string.es.mjs",
"require": "./dist/magic-string.cjs.js",
"types": "./index.d.ts"
"require": "./dist/magic-string.cjs.js"
}
},
"files": [
Expand Down

0 comments on commit f90bf6d

Please sign in to comment.