Skip to content

Commit

Permalink
fix wrongful relative includes in tsconfig.json
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ulfgebhardt committed Nov 20, 2024
1 parent 67ef626 commit 545308e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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" }]
}

0 comments on commit 545308e

Please sign in to comment.