diff --git a/renovate.json b/renovate.json index 107014e7..f5ce0111 100644 --- a/renovate.json +++ b/renovate.json @@ -1,4 +1,16 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["github>dejanvasic85/renovate-config:nextjs"] + "extends": ["github>dejanvasic85/renovate-config:nextjs"], + "packageRules": [ + { + "description": "pnpm 11.12.0 breaks pnpm/action-setup self-install (createFullPkgId integrity crash). See pnpm/action-setup#276. Unblock once pnpm ships a fix.", + "matchPackageNames": ["pnpm"], + "allowedVersions": "<11.12.0" + }, + { + "description": "TypeScript 7 is the native (Go) compiler and ships platform binaries instead of the JS module Next.js loads, so next build fails to detect TypeScript. Unblock once Next.js supports the native compiler.", + "matchPackageNames": ["typescript"], + "allowedVersions": "<7.0.0" + } + ] }