Skip to content

Commit

Permalink
fix: fixed export paths for ESM code
Browse files Browse the repository at this point in the history
  • Loading branch information
favna committed Aug 16, 2022
1 parent 3298f7f commit a3df70b
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,10 +6,10 @@
"license": "MIT",
"type": "module",
"main": "dist/graphql-pokemon.cjs",
"module": "dist/graphql-pokemon.mjs",
"module": "dist/graphql-pokemon.js",
"types": "dist/graphql-pokemon.d.ts",
"exports": {
"import": "./dist/graphql-pokemon.mjs",
"import": "./dist/graphql-pokemon.js",
"require": "./dist/graphql-pokemon.cjs",
"types": "./dist/graphql-pokemon.d.ts"
},
Expand Down

0 comments on commit a3df70b

Please sign in to comment.