Skip to content

Commit

Permalink
Make typescript happy again
Browse files Browse the repository at this point in the history
  • Loading branch information
tufcode committed Aug 29, 2023
1 parent d92f113 commit 450ab0b
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "soketto-client",
"version": "1.0.3-release",
"version": "1.0.4-release",
"author": "Tufan Meriç Uyguner",
"license": "MIT",
"keywords": [],
Expand All @@ -11,9 +11,18 @@
"typings": "lib/index.d.ts",
"exports": {
".": {
"browser": "./dist/soketto-client.js",
"import": "./build/esm/index.mjs",
"require": "./build/cjs/index.js"
"browser": {
"default": "./dist/soketto-client.js",
"types": "./dist/soketto-client.d.ts"
},
"import": {
"default": "./build/esm/index.mjs",
"types": "./lib/index.d.ts"
},
"require": {
"default": "./build/cjs/index.js",
"types": "./lib/index.d.ts"
}
},
"./package.json": "./package.json"
},
Expand Down

0 comments on commit 450ab0b

Please sign in to comment.