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
This commit is contained in:
Ulf Gebhardt 2024-11-20 12:49:35 +01:00
parent 67ef62645f
commit 545308e6a1
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -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" }]
}