Update internal dev dependencies#49
Merged
Merged
Conversation
chaance
commented
Dec 11, 2025
| "lib": ["DOM", "ES2022", "DOM.Iterable"], | ||
| "jsx": "react", | ||
| "module": "Node16", | ||
| "moduleResolution": "Node", |
Contributor
Author
There was a problem hiding this comment.
Node is an invalid moduleResolution when module is set to Node16. The CJS build config reverts this since it uses CJS module format.
Contributor
Greptile OverviewGreptile SummaryThis PR updates internal dev dependencies to their latest versions and fixes TypeScript configuration for proper module resolution. Key Changes:
Notes:
Confidence Score: 5/5
Important Files ChangedFile Analysis
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant NPM as NPM Registry
participant TS as TypeScript Compiler
participant Build as Build System
Dev->>NPM: Update dev dependencies
NPM-->>Dev: Install @testing-library/jest-dom ^6.9.1
NPM-->>Dev: Install @testing-library/react ^16.3.0
NPM-->>Dev: Install @types/node ^24.10.3
NPM-->>Dev: Install @typescript-eslint/eslint-plugin ^7.18.0
NPM-->>Dev: Install @workos-inc/node ^7.77.0 (dev)
NPM-->>Dev: Install eslint ^8.57.1
NPM-->>Dev: Install prettier ^3.7.4
NPM-->>Dev: Install react-router ^7.10.1
NPM-->>Dev: Install typescript ^5.9.3
Dev->>TS: Update tsconfig.json
Note over TS: moduleResolution: Node → Node16
Dev->>TS: Update tsconfig-cjs.json
Note over TS: Add moduleResolution: Node for CJS
Dev->>Build: Add typecheck script
Build->>TS: Run tsc --noEmit
TS-->>Build: Type checking complete
Dev->>Build: npm run build
Build->>TS: Compile with tsconfig-cjs.json
TS-->>Build: CommonJS output generated
|
nicknisi
approved these changes
Dec 11, 2025
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.
No description provided.