diff --git a/packages/common/src/scopeSupportFacets/css.ts b/packages/common/src/scopeSupportFacets/css.ts index fd7d2c7452..fcfab62bc4 100644 --- a/packages/common/src/scopeSupportFacets/css.ts +++ b/packages/common/src/scopeSupportFacets/css.ts @@ -158,6 +158,8 @@ export const cssScopeSupport: LanguageScopeSupportFacetMap = { "type.field": notApplicable, "type.foreach": notApplicable, "type.interface": notApplicable, + "type.resource": notApplicable, + "type.resource.iteration": notApplicable, "type.return": notApplicable, "type.typeArgument.iteration": notApplicable, "type.typeArgument": notApplicable, diff --git a/packages/common/src/scopeSupportFacets/html.ts b/packages/common/src/scopeSupportFacets/html.ts index c87104ff68..e2f403e84c 100644 --- a/packages/common/src/scopeSupportFacets/html.ts +++ b/packages/common/src/scopeSupportFacets/html.ts @@ -129,6 +129,8 @@ export const htmlScopeSupport: LanguageScopeSupportFacetMap = { "type.field": notApplicable, "type.foreach": notApplicable, "type.interface": notApplicable, + "type.resource": notApplicable, + "type.resource.iteration": notApplicable, "type.return": notApplicable, "type.typeArgument.iteration": notApplicable, "type.typeArgument": notApplicable, diff --git a/packages/common/src/scopeSupportFacets/json.ts b/packages/common/src/scopeSupportFacets/json.ts index ac62464842..258519a628 100644 --- a/packages/common/src/scopeSupportFacets/json.ts +++ b/packages/common/src/scopeSupportFacets/json.ts @@ -154,6 +154,8 @@ export const jsonScopeSupport: LanguageScopeSupportFacetMap = { "type.field.iteration": notApplicable, "type.foreach": notApplicable, "type.interface": notApplicable, + "type.resource": notApplicable, + "type.resource.iteration": notApplicable, "type.return": notApplicable, "type.typeArgument": notApplicable, "type.typeArgument.iteration": notApplicable, diff --git a/packages/common/src/scopeSupportFacets/markdown.ts b/packages/common/src/scopeSupportFacets/markdown.ts index e4a0ce1873..7dc7078e73 100644 --- a/packages/common/src/scopeSupportFacets/markdown.ts +++ b/packages/common/src/scopeSupportFacets/markdown.ts @@ -151,6 +151,8 @@ export const markdownScopeSupport: LanguageScopeSupportFacetMap = { "type.field.iteration": notApplicable, "type.foreach": notApplicable, "type.interface": notApplicable, + "type.resource": notApplicable, + "type.resource.iteration": notApplicable, "type.return": notApplicable, "type.typeArgument": notApplicable, "type.typeArgument.iteration": notApplicable, diff --git a/packages/common/src/scopeSupportFacets/scm.ts b/packages/common/src/scopeSupportFacets/scm.ts index 782986963f..4c2913a82a 100644 --- a/packages/common/src/scopeSupportFacets/scm.ts +++ b/packages/common/src/scopeSupportFacets/scm.ts @@ -149,6 +149,8 @@ export const scmScopeSupport: LanguageScopeSupportFacetMap = { "type.field.iteration": notApplicable, "type.foreach": notApplicable, "type.interface": notApplicable, + "type.resource": notApplicable, + "type.resource.iteration": notApplicable, "type.return": notApplicable, "type.typeArgument": notApplicable, "type.typeArgument.iteration": notApplicable, diff --git a/packages/common/src/scopeSupportFacets/yaml.ts b/packages/common/src/scopeSupportFacets/yaml.ts index 737fc5b416..3cb6011bc3 100644 --- a/packages/common/src/scopeSupportFacets/yaml.ts +++ b/packages/common/src/scopeSupportFacets/yaml.ts @@ -157,6 +157,8 @@ export const yamlScopeSupport: LanguageScopeSupportFacetMap = { "type.field.iteration": notApplicable, "type.foreach": notApplicable, "type.interface": notApplicable, + "type.resource": notApplicable, + "type.resource.iteration": notApplicable, "type.return": notApplicable, "type.typeArgument": notApplicable, "type.typeArgument.iteration": notApplicable,