Skip to content

Commit

Permalink
fix: types exports for "moduleResolution": "node16" (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaStevens committed Mar 27, 2023
1 parent a712596 commit 0c14cac
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/unplugin-vue-i18n/package.json
Expand Up @@ -67,19 +67,19 @@
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.mjs",
"types": "./index.d.ts"
"import": "./lib/index.mjs"
},
"./vite": {
"types": "./vite.d.ts",
"require": "./lib/vite.cjs",
"import": "./lib/vite.mjs",
"types": "./vite.d.ts"
"import": "./lib/vite.mjs"
},
"./webpack": {
"types": "./webpack.d.ts",
"require": "./lib/webpack.cjs",
"import": "./lib/webpack.mjs",
"types": "./webpack.d.ts"
"import": "./lib/webpack.mjs"
},
"./types": {
"types": "./types.d.ts"
Expand Down

0 comments on commit 0c14cac

Please sign in to comment.