vue3-video-play
vue3-video-play copied to clipboard
[commonjs--resolver] Failed to resolve entry for package "vue3-video-play".
vite:4.5.0编译报错
[commonjs--resolver] Failed to resolve entry for package "vue3-video-play". The package may have incorrect main/module/exports specified in its package.json.
error during build:
Error: Failed to resolve entry for package "vue3-video-play". The package may have incorrect main/module/exports specified in its package.json.
从node_modules找到package.json,添加了exports后再编译正常。
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.umd.js",
"require": "./dist/index.es.js"
},
"./*": [
"./*",
"./*.d.ts"
]
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},