Skip to content

Commit

Permalink
πŸ› Next.js build error: targets must start with "./", fix #63
Browse files Browse the repository at this point in the history
  • Loading branch information
astoilkov committed Aug 16, 2023
1 parent d8782de commit ccefd2d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@
"store"
],
"type": "module",
"main": "index.js",
"exports": "index.js",
"types": "index.d.ts",
"main": "./index.js",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"scripts": {
"build": "tsc",
Expand Down

0 comments on commit ccefd2d

Please sign in to comment.