feat(platform-picker): add typescript/ts as filter aliases for javascript#115407
Open
sentry-junior[bot] wants to merge 2 commits into
Open
feat(platform-picker): add typescript/ts as filter aliases for javascript#115407sentry-junior[bot] wants to merge 2 commits into
sentry-junior[bot] wants to merge 2 commits into
Conversation
…ript Searching for 'typescript' in the platform picker currently returns no results, showing the 'We don't have an SDK for that yet!' message. This adds 'typescript' and 'ts' as filter aliases for the javascript platform, using the existing filterAliases mechanism. Data from the platformpicker_search analytics event shows ~30 exact 'typescript' searches over the past 90 days, plus partial prefix searches (type: 550, types: 48, typesc: 41, etc.).
Contributor
📊 Type Coverage Diff✅ No new type safety issues introduced. Coverage: 93.50% |
ryan953
approved these changes
May 12, 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 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.
Searching for "typescript" in the platform picker currently shows the "We don't have an SDK for that yet!" message. This is a common search — analytics show ~30 exact "typescript" searches and ~550 "type" prefix searches over the past 90 days.
This adds
typescriptandtsas filter aliases for thejavascriptplatform, using the existingfilterAliasesmechanism (same pattern ascpp/c++→native).Changes
static/app/data/platformPickerCategories.tsx: Addedjavascript: ['typescript', 'ts']tofilterAliasesstatic/app/components/platformPicker.spec.tsx: Added test for the typescript alias (mirrors existing c++ alias test)On behalf of
@BYK (requested by Billy Vong in Slack)