Skip to content

Commit

Permalink
fix: move types condition to the front (#16085)
Browse files Browse the repository at this point in the history
Co-authored-by: Zoé <zoe@ephys.dev>
Co-authored-by: Rik Smale <13023439+WikiRik@users.noreply.github.com>
  • Loading branch information
3 people committed Jun 1, 2023
1 parent af4f0ae commit 99c3530
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Expand Up @@ -21,17 +21,17 @@
"type": "commonjs",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./types/index.d.ts"
"require": "./lib/index.js"
},
"./lib/*": {
"default": "./lib/*.js",
"types": "./types/*.d.ts"
"types": "./types/*.d.ts",
"default": "./lib/*.js"
},
"./lib/errors": {
"default": "./lib/errors/index.js",
"types": "./types/errors/index.d.ts"
"types": "./types/errors/index.d.ts",
"default": "./lib/errors/index.js"
},
"./package.json": "./package.json",
"./types/*": {
Expand Down

0 comments on commit 99c3530

Please sign in to comment.