fix: resolve type conflicts by overriding @roo-code/types to use workspace version

The type errors were caused by @roo-code/cloud package importing an external version of @roo-code/types (^1.52.0) which conflicted with the local workspace version. Added a pnpm override to force all packages to use the workspace version of @roo-code/types, resolving the type incompatibility issues in ClineProvider.ts and extension.ts.
This commit is contained in:
Roo Code 2025-08-19 13:10:42 +00:00
parent 46e979c289
commit b81180078d

View file

@ -62,7 +62,8 @@
"undici": ">=5.29.0",
"brace-expansion": ">=2.0.2",
"form-data": ">=4.0.4",
"bluebird": ">=3.7.2"
"bluebird": ">=3.7.2",
"@roo-code/types": "workspace:*"
}
}
}