File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -3134,7 +3134,7 @@ namespace ts {
31343134 else if ( isRightOfOpenTag ) {
31353135 const tagSymbols = typeChecker . getJsxIntrinsicTagNames ( ) ;
31363136 if ( tryGetGlobalSymbols ( ) ) {
3137- symbols = tagSymbols . concat ( symbols . filter ( s => ! ! ( s . flags & SymbolFlags . Value ) ) ) ;
3137+ symbols = tagSymbols . concat ( symbols . filter ( s => ! ! ( s . flags & ( SymbolFlags . Value | SymbolFlags . Alias ) ) ) ) ;
31383138 }
31393139 else {
31403140 symbols = tagSymbols ;
Original file line number Diff line number Diff line change 1+ /// <reference path='fourslash.ts' />
2+
3+ //@module : commonjs
4+ //@jsx : preserve
5+
6+ //@Filename : exporter.tsx
7+ //// export class Thing { }
8+
9+ //@Filename : file.tsx
10+ //// import {Thing} from './exporter';
11+ //// var x1 = <div></**/
12+
13+ goTo . marker ( ) ;
14+ verify . completionListContains ( 'Thing' ) ;
You can’t perform that action at this time.
0 commit comments