Skip to content

Commit

Permalink
Fix export extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins committed Jun 3, 2023
1 parent 13ab10e commit e495cb5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/query-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"type": "module",
"types": "dist/types/index.d.ts",
"main": "dist/cjs/index.js",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"exports": {
".": {
Expand All @@ -21,10 +21,10 @@
"import": "./dist/esm/index.js",
"browser": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
"require": "./dist/cjs/index.cjs"
},
"require": "./dist/cjs/index.js",
"node": "./dist/cjs/index.js"
"require": "./dist/cjs/index.cjs",
"node": "./dist/cjs/index.cjs"
},
"./package.json": "./package.json"
},
Expand Down

0 comments on commit e495cb5

Please sign in to comment.