Skip to content

Commit

Permalink
fix: node js esm module import
Browse files Browse the repository at this point in the history
  • Loading branch information
szuperaz committed Oct 2, 2024
1 parent 40c18b0 commit 835726d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"description": "",
"exports": {
".": {
"import": "./dist/index.es.js",
"import": "./dist/index.es.mjs",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"module": "dist/index.es.mjs",
"types": "dist/index.d.ts",
"author": "https://getstream.io",
"license": "See license in LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const nodeConfig = {
sourcemap: true,
},
{
file: "dist/index.es.js",
file: "dist/index.es.mjs",
format: "es",
sourcemap: true,
},
Expand Down

0 comments on commit 835726d

Please sign in to comment.