huozhi / bunchee

Zero config bundler for ECMAScript and TypeScript packages
https://npmjs.com/bunchee
861 stars 28 forks source link

Bad lint result for exports #479

Closed huozhi closed 3 months ago

huozhi commented 3 months ago

Input

{
  "name": "shared-module",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "default": "./dist/index.cjs"
    },
    "./another": {
      "import": "./dist/another.js",
      "default": "./dist/another.cjs"
    }
  }
}
⚠️ Cannot export `import` field with .js or .cjs extension in CJS package, only .mjs extensions are allowed
huozhi commented 3 months ago

Can't repro it anymore