You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(build): auto-rebuild TypeScript types for packages/plugins in webpack
After PR #35159 changes, developers had to manually run `npm run plugins:build`
whenever types changed in packages or plugins. This adds automatic type checking
and .d.ts generation to the webpack dev process using ForkTsCheckerWebpackPlugin.
Key improvements:
- Automatic type rebuilding when packages/plugins change
- Inline type error reporting in webpack console
- Incremental compilation for better performance
- skipLibCheck optimization for faster type checking
- Can be disabled with DISABLE_TYPE_CHECK=true npm run dev
- Fixes PropTypes compatibility for JavaScript files
This eliminates the need for manual type rebuilding and makes the development
experience smoother while maintaining type safety.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
0 commit comments