File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
packages/common/src/scopeSupportFacets Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { javascriptCoreScopeSupport } from "./javascript";
22import type { LanguageScopeSupportFacetMap } from "./scopeSupportFacets.types" ;
33import { ScopeSupportFacetLevel } from "./scopeSupportFacets.types" ;
44
5- const { supported, notApplicable } = ScopeSupportFacetLevel ;
5+ const { supported, unsupported , notApplicable } = ScopeSupportFacetLevel ;
66
77export const typescriptScopeSupport : LanguageScopeSupportFacetMap = {
88 ...javascriptCoreScopeSupport ,
@@ -23,6 +23,14 @@ export const typescriptScopeSupport: LanguageScopeSupportFacetMap = {
2323
2424 "value.typeAlias" : supported ,
2525
26+ // Unsupported
27+
28+ "type.class" : unsupported ,
29+ "type.field.iteration" : unsupported ,
30+ "type.foreach" : unsupported ,
31+ "type.typeArgument" : unsupported ,
32+ "type.typeArgument.iteration" : unsupported ,
33+
2634 // Not applicable
2735
2836 element : notApplicable ,
You can’t perform that action at this time.
0 commit comments