Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,17 @@
matchManagers: [ 'npm' ],
matchPackageNames: [ '@types/react', '@types/react-dom' ],
enabled: false,
},
// vite-plugin-dts v5 splits its implementation into a separate `unplugin-dts` package
// and exposes its types exclusively via package.json `exports` subpaths, which require
// TypeScript's `moduleResolution: "node16" | "nodenext" | "bundler"`. Our tsconfig still
// uses classic `node` resolution (see the @ts-expect-error comments in vite.config.ts),
// so v5 fails to type-check with "has no default export". Keep pinned at 4.x until we
// migrate moduleResolution.
{
matchManagers: [ 'npm' ],
matchPackageNames: [ 'vite-plugin-dts' ],
allowedVersions: '<5.0.0',
}
],
semanticCommits: 'enabled',
Expand Down