Skip to content

Commit

Permalink
fix "exports" for node 13.0-13.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jridgewell committed Jun 26, 2022
1 parent c93f7a6 commit f3a4be4
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions package.json
Expand Up @@ -10,12 +10,15 @@
"module": "dist/set-array.mjs",
"typings": "dist/types/set-array.d.ts",
"exports": {
".": {
"types": "./dist/types/set-array.d.ts",
"browser": "./dist/set-array.umd.js",
"require": "./dist/set-array.umd.js",
"import": "./dist/set-array.mjs"
},
".": [
{
"types": "./dist/types/set-array.d.ts",
"browser": "./dist/set-array.umd.js",
"require": "./dist/set-array.umd.js",
"import": "./dist/set-array.mjs"
},
"./dist/set-array.umd.js"
],
"./package.json": "./package.json"
},
"files": [
Expand Down

0 comments on commit f3a4be4

Please sign in to comment.