Skip to content

Commit

Permalink
fix: exports
Browse files Browse the repository at this point in the history
  • Loading branch information
v8tenko committed Oct 1, 2024
1 parent 9d78c07 commit f9d02aa
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@
"markdown",
"utils"
],
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"types": "./build/esm/index.d.ts",
"exports": {
".": {
"types": "./build/cjs/index.d.ts",
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js",
"default": "./build/esm/index.js"
}
},
"files": [
"build/"
],
Expand Down

0 comments on commit f9d02aa

Please sign in to comment.