feat: setup turbo, cleanup deps

Signed-off-by: Alix von Schirp <github@avonschirp.bootmedia.de>
This commit is contained in:
2025-12-21 23:27:16 +01:00
parent 5e570201bd
commit 4b9c721ffd
5 changed files with 28 additions and 199 deletions

15
turbo.jsonc Normal file
View File

@@ -0,0 +1,15 @@
{
"$schema": "https://turborepo.com/schema.json",
"tasks": {
"build": {
"outputs": ["dist/**"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"persistent": true,
"cache": false
}
}
}