From a90aeb3d8fd05fc6303ce9ef4e957c2e19cbe9c4 Mon Sep 17 00:00:00 2001 From: Richie Foreman Date: Wed, 13 Aug 2025 16:17:38 -0400 Subject: chore(build/compiler): Enable a bunch of strict TS compiler options. (#6138) --- packages/core/src/tools/memoryTool.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/core/src/tools/memoryTool.ts') diff --git a/packages/core/src/tools/memoryTool.ts b/packages/core/src/tools/memoryTool.ts index a9d765c4..73282d60 100644 --- a/packages/core/src/tools/memoryTool.ts +++ b/packages/core/src/tools/memoryTool.ts @@ -180,7 +180,7 @@ class MemoryToolInvocation extends BaseToolInvocation< return `in ${tildeifyPath(memoryFilePath)}`; } - async shouldConfirmExecute( + override async shouldConfirmExecute( _abortSignal: AbortSignal, ): Promise { const memoryFilePath = getGlobalMemoryFilePath(); @@ -294,7 +294,7 @@ export class MemoryTool ); } - validateToolParams(params: SaveMemoryParams): string | null { + override validateToolParams(params: SaveMemoryParams): string | null { const errors = SchemaValidator.validate( this.schema.parametersJsonSchema, params, -- cgit v1.2.3