Skip to content

Commit

Permalink
fix(frontend-sdk): fix export types
Browse files Browse the repository at this point in the history
  • Loading branch information
amjed-ali-k authored Oct 11, 2023
1 parent 7069362 commit 6c730c8
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions frontend/frontend-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@
"files": [
"dist"
],
"types": "dist/index.d.ts",
"type": "module",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/sdk.cjs",
"default": "./dist/sdk.modern.js"
".": {
"require": "./dist/sdk.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/sdk.modern.js"
}
},
"main": "./dist/sdk.cjs",
"module": "./dist/sdk.module.js",
Expand Down

0 comments on commit 6c730c8

Please sign in to comment.