Skip to content

Commit

Permalink
fix: support modern esm and types resolution (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaSemenov authored Aug 28, 2024
1 parent 6ee85dd commit 78e3c9f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
"name": "@stream-io/node-sdk",
"version": "0.3.0",
"description": "",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 78e3c9f

Please sign in to comment.