chore: update dependencies#173
Merged
Patrick Lafrance (patricklafrance) merged 2 commits intomainfrom Mar 10, 2026
Merged
Conversation
Add "types": ["node"] to root tsconfig.json to fix tsgo typecheck failure — tsgo doesn't auto-include @types/node, so import.meta.dirname was unresolved in eslint.config.ts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copilot started reviewing on behalf of
Patrick Lafrance (patricklafrance)
March 10, 2026 20:31
View session
@workleap/common-room
@workleap-telemetry/core
@workleap/honeycomb
@workleap/logrocket
@workleap/mixpanel
@workleap/telemetry
commit: |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates TypeScript’s native preview compiler dependency across the monorepo and adjusts the root TypeScript configuration so tsgo typechecking can resolve Node-specific globals used by repo-level tooling (e.g., eslint.config.ts).
Changes:
- Bump
@typescript/native-previewto7.0.0-dev.20260310.1across workspace packages and samples. - Add
compilerOptions.types: ["node"]to the roottsconfig.jsonto ensure Node typings are included for root-level typechecking. - Refresh
pnpm-lock.yamlto reflect the updated dependency graph (including transitive updates).
Reviewed changes
Copilot reviewed 15 out of 17 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tsconfig.json | Includes Node type definitions at the root to fix tsgo typecheck failures for tooling files. |
| package.json | Updates root devDependency for @typescript/native-preview. |
| packages/core/package.json | Aligns @typescript/native-preview version with workspace standard. |
| packages/common-room/package.json | Aligns @typescript/native-preview version with workspace standard. |
| packages/honeycomb/package.json | Aligns @typescript/native-preview version with workspace standard. |
| packages/logrocket/package.json | Aligns @typescript/native-preview version with workspace standard. |
| packages/mixpanel/package.json | Aligns @typescript/native-preview version with workspace standard. |
| packages/telemetry/package.json | Aligns @typescript/native-preview version with workspace standard. |
| samples/all-platforms/app/package.json | Aligns @typescript/native-preview version with workspace standard. |
| samples/all-platforms/express-server/package.json | Aligns @typescript/native-preview version with workspace standard. |
| samples/all-platforms/mixpanel-proxy/package.json | Aligns @typescript/native-preview version with workspace standard. |
| samples/honeycomb/api-key/app/package.json | Aligns @typescript/native-preview version with workspace standard. |
| samples/honeycomb/api-key/express-server/package.json | Aligns @typescript/native-preview version with workspace standard. |
| samples/honeycomb/proxy/app/package.json | Aligns @typescript/native-preview version with workspace standard. |
| samples/honeycomb/proxy/express-proxy/package.json | Aligns @typescript/native-preview version with workspace standard. |
| samples/honeycomb/proxy/express-server/package.json | Aligns @typescript/native-preview version with workspace standard. |
| pnpm-lock.yaml | Updates lockfile to reflect the new native preview version and resulting transitive dependency resolutions. |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
c0dcafd
into
main
6 of 7 checks passed
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.
Summary
@typescript/native-previewto7.0.0-dev.20260310.1across all packages"types": ["node"]to roottsconfig.jsonto fixtsgotypecheck failure —tsgodoesn't auto-include@types/node, soimport.meta.dirnamewas unresolved ineslint.config.tsTest plan
pnpm lintpasses (31/31 tasks)🤖 Generated with Claude Code