Skip to content

Commit

Permalink
fix: move types to be first entry in package.json exports (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Jan 6, 2023
1 parent 3975ea5 commit 618cae2
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 @@ -6,9 +6,9 @@
"module": "dist/esm/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/index.d.ts"
"require": "./dist/cjs/index.cjs"
},
"sideEffects": false,
"files": [
Expand Down

1 comment on commit 618cae2

@vercel
Copy link

@vercel vercel bot commented on 618cae2 Jan 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.