diff --git a/packages/plugin-echochambers/src/index.ts b/packages/plugin-echochambers/src/index.ts index 1407e7a01b..9fc9b6cd53 100644 --- a/packages/plugin-echochambers/src/index.ts +++ b/packages/plugin-echochambers/src/index.ts @@ -719,7 +719,7 @@ export const EchoChamberClientInterface: Client = { } }, - async stop(runtime: IAgentRuntime) { + async stop(_runtime: IAgentRuntime) { try { elizaLogger.warn("Stopping EchoChambers client..."); // TODO: Stop clients diff --git a/packages/plugin-echochambers/tsconfig.json b/packages/plugin-echochambers/tsconfig.json new file mode 100644 index 0000000000..b98954f213 --- /dev/null +++ b/packages/plugin-echochambers/tsconfig.json @@ -0,0 +1,10 @@ +{ + "extends": "../core/tsconfig.json", + "compilerOptions": { + "outDir": "dist", + "rootDir": "./src" + }, + "include": [ + "src" + ] +} \ No newline at end of file