Fix TypeScript build errors across all packages#1235
Merged
xuyushun441-sys merged 1 commit intomainfrom Apr 14, 2026
Merged
Conversation
- Add CSS module and process environment type declarations to plugins - Fix chart.tsx formatter type signature to accept all required parameters - Fix data-objectstack tsconfig and add tsup.config for proper DTS generation - Fix ListView type annotations for orderA/orderB and filter callback - Fix useObjectChat to handle @ai-sdk/react type changes - Fix ObjectKanban unused props variable warning Agent-Logs-Url: https://github.com/objectstack-ai/objectui/sessions/8cf8abc2-5df6-483d-8808-304589c9ac72 Co-authored-by: xuyushun441-sys <255036401+xuyushun441-sys@users.noreply.github.com>
Claude created this pull request from a session on behalf of
xuyushun441-sys
April 14, 2026 08:45
View session
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
✅ Console Performance Budget
📦 Bundle Size Report
Size Limits
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resolved TypeScript compilation failures preventing CI builds from passing. Errors spanned missing type declarations, incompatible third-party library types, and monorepo package reference issues.
Changes
Type Declarations
global.d.tsfiles for CSS module imports andprocess.envin components, plugin-dashboard, plugin-map, plugin-report, plugin-viewPackage Build Configuration
data-objectstackpackage compilation by removing conflictingrootDirfrom tsconfigtypesandcorepackagestsup.config.tsto properly externalize workspace dependencies during DTS generationType Compatibility Fixes
chart.tsxformatter signature from(value: any)to(value: any, name?: any, item?: any, index?: number, payload?: any)to match actual usage (TS2554)ListView.tsxarithmetic type errors by explicitly typingorderAandorderBasnumber(TS2362, TS2363)useObjectChat.tscompatibility with@ai-sdk/reactv3 API using type assertionCode Cleanup
ObjectKanban.tsxfrompropsto_props(TS6133)Build Status
All 42 packages build successfully with no TypeScript errors.