Update immutable to 4.3.8 and enable skipLibCheck

Bump immutable from 4.0.0-rc.12 to the stable 4.3.8 release (top of the 4.x line; stays within the <5.0.0 peer ranges required by @nteract/* and redux-immutable).

immutable 4.3.8 tightened RecordOf<TProps extends Object> to extends object. The third-party @nteract/myths types (pulled in via @nteract/core) pass an unconstrained STATE to RecordOf<STATE>, which tsc rejects. Enable skipLibCheck (standard TS fix) to skip type-checking of node_modules .d.ts files; no effect on emit or our own source.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Jade Welton
2026-06-24 09:41:21 -07:00
parent 1ca8dc4e5d
commit 8d01a46d00
3 changed files with 7 additions and 3 deletions
+1
View File
@@ -2,6 +2,7 @@
"compilerOptions": {
"allowJs": true,
"sourceMap": false,
"skipLibCheck": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,