From 545308e6a1e2d6f2308fff072cd1cca2dd3c5d16 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 20 Nov 2024 12:49:35 +0100 Subject: [PATCH] fix wrongful relative includes in tsconfig.json For some reason specific Components were included in the tsconfig.json with a relative path. This should have caused problems for anyone who has not checked out `utopia-ui` in the coresponding location. This was discovered due to the fact that we cannot include components directly anymore since the include paths have project specific path aliases --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 0e007872..9720a1eb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,6 +19,6 @@ "noUnusedParameters": true, "noFallthroughCasesInSwitch": true }, - "include": ["src", "../utopia-ui/src/Components/Templates/CardPage.tsx", "../../workspace/utopia-ui/src/Components/Templates/MoonCalendar.tsx", "../../workspace/utopia-ui/src/Components/Templates/ItemIndexPage.tsx"], + "include": ["src"], "references": [{ "path": "./tsconfig.node.json" }] }