Fix TanStack Router lint resolution in test app#4513
Merged
Conversation
Add the missing TypeScript path mapping for `@datadog/browser-rum-react/tanstack-router` in the repo and test app configs so type-aware ESLint can resolve the subpath package.
Collaborator
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
Bundles Sizes Evolution
🚀 CPU Performance
🧠 Memory Performance
|
🎉 All green!❄️ No new flaky tests detected 🎯 Code Coverage (details) 🔗 Commit SHA: c75e8ec | Docs | Datadog PR Page | Give us feedback! |
This was referenced Apr 21, 2026
amortemousque
approved these changes
Apr 21, 2026
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.

Motivation
The TanStack Router test app was already importing
@datadog/browser-rum-react/tanstack-router, but our TypeScript config did not include a matching path alias for that subpath. As a result, type-aware ESLint could not resolve the import andyarn lintfailed.Changes
@datadog/browser-rum-react/tanstack-routerpath alias to the repo-leveltsconfig.base.jsontest/apps/tanstack-router-app/tsconfig.jsonso the test app's local type-aware linting also resolves the package correctlyThis is a config-only fix. It does not change runtime behavior.
Test instructions
yarn lintfrom the repository root.test/apps/tanstack-router-app/app.tsxno longer appears.Checklist