Skip to content

Commit

Permalink
fix: typings for web package version
Browse files Browse the repository at this point in the history
  • Loading branch information
asiaziola committed Dec 15, 2023
1 parent 6aef248 commit 6b05d41
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,22 @@
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.js",
"browser": {
"./lib/cjs/index.js": "./bundles/web.bundle.min.js"
"./lib/cjs/index.js": "./bundles/web.bundle.min.js",
"types": "./lib/types/index.d.ts"
},
"exports": {
"./web": "./bundles/web.bundle.min.js",
"./web": {
"import": "./bundles/web.bundle.min.js",
"types": "./lib/types/index.d.ts"
},
"./mjs": {
"import": "./lib/mjs/index.js",
"types": "./lib/types/index.d.ts"
},
".": "./lib/cjs/index.js"
".": {
"import": "./lib/cjs/index.js",
"types": "./lib/types/index.d.ts"
}
},
"sideEffects": false,
"engines": {
Expand Down

0 comments on commit 6b05d41

Please sign in to comment.