Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
build: update exports
Browse files Browse the repository at this point in the history
  • Loading branch information
xstelea committed Aug 16, 2023
1 parent c4a8433 commit fdf3fd5
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,17 @@
"files": [
"dist"
],
"main": "./dist/wallet-sdk.umd.js",
"module": "./dist/wallet-sdk.mjs",
"main": "./dist/wallet-sdk.mjs",
"exports": {
".": {
"import": "./dist/wallet-sdk.mjs",
"require": "./dist/wallet-sdk.umd.js"
"import": {
"types": "./dist/wallet-sdk.d.ts",
"default": "./dist/wallet-sdk.mjs"
},
"require": {
"types": "./dist/wallet-sdk.d.ts",
"default": "./dist/wallet-sdk.umd.js"
}
}
},
"types": "./dist/wallet-sdk.d.ts",
Expand Down

0 comments on commit fdf3fd5

Please sign in to comment.