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
types pointed at ./index.ts, so consumers typechecked library source
under their own tsconfig and got 221 errors out of node_modules.
skipLibCheck does not help — it only skips .d.ts files.
Enables bob's typescript target and repoints types at
lib/typescript/index.d.ts. Fixing the 22 errors that blocked declaration
output caught real bugs, notably React.ReactText (removed in React 19)
across 19 sites and a Calendar ref typed () => string that returns a
CalendarViewMode.
Also widens Button/Select/Datepicker text props to accept string|number,
matching CheckBox/Toggle/Radio and what FalsyText already does at
runtime, so <Button>TEXT</Button> typechecks.
Type-only: the compiled bundle is byte-identical.
0 commit comments