From a33d9d68ec7d8b6c395f257f08a2ac2b5f8d63e8 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Mon, 20 Oct 2025 17:09:47 +0200 Subject: [PATCH] Update tsconfig.json: Add path mapping for shared-meet-components library to avoid build issues --- meet-ce/frontend/tsconfig.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/meet-ce/frontend/tsconfig.json b/meet-ce/frontend/tsconfig.json index 14ab6b8..5dd7113 100644 --- a/meet-ce/frontend/tsconfig.json +++ b/meet-ce/frontend/tsconfig.json @@ -29,7 +29,13 @@ ], "@app/*": [ "src/app/*" - ] + ], + // path mappings for avoiding build the shared-meet-components library + "@openvidu-meet/shared-components": [ + "projects/shared-meet-components/src/public-api.ts" + ], + + }, "importHelpers": true, "target": "ES2022",