Skip to content

Commit

Permalink
Fix solid-devtools package.json exports
Browse files Browse the repository at this point in the history
  • Loading branch information
thetarnav committed Apr 8, 2024
1 parent cd2c574 commit fa08deb
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions packages/main/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,16 @@
"types": "./dist/index.d.ts",
"exports": {
".": {
"development": {
"browser": {
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
"default": "./dist/index_noop.js"
}
},
"import": {
Expand All @@ -39,10 +45,16 @@
}
},
"./setup": {
"development": {
"browser": {
"development": {
"import": {
"types": "./dist/setup.d.ts",
"default": "./dist/setup.js"
}
},
"import": {
"types": "./dist/setup.d.ts",
"default": "./dist/setup.js"
"default": "./dist/setup_noop.js"
}
},
"import": {
Expand Down

0 comments on commit fa08deb

Please sign in to comment.