Skip to content

Commit

Permalink
fix: list types first in package exports (#812)
Browse files Browse the repository at this point in the history
Co-authored-by: aw17732 <[email protected]>
Co-authored-by: Anton Medvedev <[email protected]>
  • Loading branch information
3 people committed May 17, 2024
1 parent dfeb166 commit 23fe548
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,27 +23,27 @@
},
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"require": "./build/index.cjs",
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./globals": {
"types": "./build/globals.d.ts",
"import": "./build/globals.js",
"require": "./build/globals.cjs",
"types": "./build/globals.d.ts",
"default": "./build/globals.js"
},
"./cli": {
"types": "./build/cli.d.ts",
"import": "./build/cli.js",
"require": "./build/cli.cjs",
"types": "./build/cli.d.ts",
"default": "./build/cli.js"
},
"./core": {
"types": "./build/core.d.ts",
"import": "./build/core.js",
"require": "./build/core.cjs",
"types": "./build/core.d.ts",
"default": "./build/core.js"
},
"./package.json": "./package.json"
Expand Down

0 comments on commit 23fe548

Please sign in to comment.