Skip to content

Commit

Permalink
fix(types): fix type augmentation and compiler-sfc types w/moduleReso…
Browse files Browse the repository at this point in the history
…lution: bundler (#13107)

close #13106
  • Loading branch information
thebanjomatic committed Dec 6, 2023
1 parent 45d6ad6 commit de0b97b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Expand Up @@ -18,19 +18,20 @@
],
"exports": {
".": {
"types": "./types/index.d.ts",
"import": {
"node": "./dist/vue.runtime.mjs",
"default": "./dist/vue.runtime.esm.js"
},
"require": "./dist/vue.runtime.common.js",
"types": "./types/index.d.ts"
"require": "./dist/vue.runtime.common.js"
},
"./compiler-sfc": {
"types": "./compiler-sfc/index.d.ts",
"import": "./compiler-sfc/index.mjs",
"require": "./compiler-sfc/index.js"
},
"./dist/*": "./dist/*",
"./types/*": "./types/*",
"./types/*": ["./types/*.d.ts", "./types/*"],
"./package.json": "./package.json"
},
"sideEffects": false,
Expand Down

0 comments on commit de0b97b

Please sign in to comment.