Skip to content

Commit 52a8366

Browse files
committed
TS: fix build
1 parent e481a31 commit 52a8366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fake_definition.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ export function buildWithFakeDefinitions(
271271
if (isObjectType(type) || isInterfaceType(type)) {
272272
for (const field of Object.values(type.getFields())) {
273273
const isExtensionField = field.astNode?.loc?.source === extensionSDL;
274-
(field.extensions['isExtensionField'] as any) = isExtensionField;
274+
(field.extensions as any)['isExtensionField'] = isExtensionField;
275275
}
276276
}
277277
}

0 commit comments

Comments
 (0)