From 72c4168439dc83d21ed6c668278659dc55ee4a25 Mon Sep 17 00:00:00 2001 From: Alim TUNC Date: Tue, 5 Sep 2023 11:32:56 +0200 Subject: [PATCH] fix: tsconfig.node.json need an include (wtf) --- libs/components/tsconfig.node.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/components/tsconfig.node.json b/libs/components/tsconfig.node.json index 61c424ba89..109450895a 100644 --- a/libs/components/tsconfig.node.json +++ b/libs/components/tsconfig.node.json @@ -5,5 +5,6 @@ "module": "ESNext", "moduleResolution": "bundler", "allowSyntheticDefaultImports": true - } + }, + "include": [""] }