vue3-video-play icon indicating copy to clipboard operation
vue3-video-play copied to clipboard

[commonjs--resolver] Failed to resolve entry for package "vue3-video-play".

Open maxrks opened this issue 1 year ago • 6 comments

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/*",
        "./*"
      ]
    }
  },

maxrks avatar Nov 16 '23 13:11 maxrks