From 8d8b8ee26eac1421b59c65b00a3b06eb40a1060e Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Fri, 17 Nov 2023 16:54:09 +0100 Subject: [PATCH] :green_heart: Fix docker build missing ts target in schemas --- packages/schemas/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/schemas/tsconfig.json b/packages/schemas/tsconfig.json index 512c7b158bc..92fcb8b9866 100644 --- a/packages/schemas/tsconfig.json +++ b/packages/schemas/tsconfig.json @@ -3,6 +3,7 @@ "include": ["**/*.ts"], "exclude": ["node_modules"], "compilerOptions": { + "lib": ["ESNext"], "noEmit": true } }