From 41e55814d6c8366c4f4dcffa873dcc60b857b9b5 Mon Sep 17 00:00:00 2001 From: Yonggang Liu Date: Mon, 16 Dec 2024 17:39:51 -0500 Subject: [PATCH] HARMONY-1872: Add skipLibCheck ts configuration to deal with services build issue in cicd. --- services/harmony/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/harmony/tsconfig.json b/services/harmony/tsconfig.json index b7feb4045..514eea9ab 100644 --- a/services/harmony/tsconfig.json +++ b/services/harmony/tsconfig.json @@ -2,6 +2,7 @@ "extends": "./tsconfig.base.json", "compilerOptions": { "resolveJsonModule": true, + "skipLibCheck": true // Optional: Ignores type definition errors in node_modules }, "include": [ "./app/**/*", @@ -10,4 +11,4 @@ "exclude": [ "./built/**/*" ] -} \ No newline at end of file +}