Skip to content

Commit

Permalink
fix: package exports mjs file extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
LinusBorg committed Dec 10, 2022
1 parent f3fafad commit 86c3601
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
"main": "dist/portal-vue.umd.js",
"jsdelivr": "dist/portal-vue.umd.js",
"unpkg": "dist/portal-vue.umd.js",
"module": "dist/portal-vue.es.js",
"module": "dist/portal-vue.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/portal-vue.es.js",
"import": "./dist/portal-vue.mjs",
"require": "./dist/portal-vue.umd.js"
},
"./dev": {
"import": "./dist/portal-vue.es.dev.js",
"import": "./dist/portal-vue.es.dev.mjs",
"require": "./dist/portal-vue.umd.dev.js"
},
"./*": "./*"
Expand Down

0 comments on commit 86c3601

Please sign in to comment.