Skip to content

Commit

Permalink
fix: update exports map paths (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Oct 12, 2022
1 parent b0189b2 commit 4e78d9e
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,35 +43,35 @@
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./src/index.js"
"import": "./dist/src/index.js"
},
"./alloc": {
"types": "./src/alloc.d.ts",
"import": "./src/alloc.js"
"types": "./dist/src/alloc.d.ts",
"import": "./dist/src/alloc.js"
},
"./compare": {
"types": "./src/compare.d.ts",
"import": "./src/compare.js"
"types": "./dist/src/compare.d.ts",
"import": "./dist/src/compare.js"
},
"./concat": {
"types": "./src/concat.d.ts",
"import": "./src/concat.js"
"types": "./dist/src/concat.d.ts",
"import": "./dist/src/concat.js"
},
"./equals": {
"types": "./src/equals.d.ts",
"import": "./src/equals.js"
"types": "./dist/src/equals.d.ts",
"import": "./dist/src/equals.js"
},
"./from-string": {
"types": "./src/from-string.d.ts",
"import": "./src/from-string.js"
"types": "./dist/src/from-string.d.ts",
"import": "./dist/src/from-string.js"
},
"./to-string": {
"types": "./src/to-string.d.ts",
"import": "./src/to-string.js"
"types": "./dist/src/to-string.d.ts",
"import": "./dist/src/to-string.js"
},
"./xor": {
"types": "./src/xor.d.ts",
"import": "./src/xor.js"
"types": "./dist/src/xor.d.ts",
"import": "./dist/src/xor.js"
}
},
"eslintConfig": {
Expand Down

0 comments on commit 4e78d9e

Please sign in to comment.