Skip to content

Commit

Permalink
fix: library building (types issue)
Browse files Browse the repository at this point in the history
  • Loading branch information
azabroflovski committed Apr 3, 2024
1 parent fd28a61 commit b9f3fa4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
"files": [
"dist"
],
"main": "./dist/thumbor-client.umd.cjs",
"module": "./dist/thumbor-client.es.js",
"types": "./dist/main.d.ts",
"main": "./dist/thumbor-client.js",
"module": "./dist/thumbor-client.js",
"exports": {
".": {
"import": "./dist/thumbor-client.es.js",
"import": "./dist/thumbor-client.js",
"require": "./dist/thumbor-client.cjs"
}
},
Expand Down
3 changes: 3 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
export * from './lib/enums'
export * from './lib/types'
export * from './helpers/index'
export * from './lib/index.ts'

0 comments on commit b9f3fa4

Please sign in to comment.