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 {
3134
3134
else if ( isRightOfOpenTag ) {
3135
3135
const tagSymbols = typeChecker . getJsxIntrinsicTagNames ( ) ;
3136
3136
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 ) ) ) ) ;
3138
3138
}
3139
3139
else {
3140
3140
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