chore: bootstrap monorepo (turbo, biome, docker-compose, env, CHOICES)

This commit is contained in:
Marco Sadjadi
2026-05-19 00:20:15 +02:00
commit fe4800e2c8
11 changed files with 1091 additions and 0 deletions

21
turbo.json Normal file
View File

@@ -0,0 +1,21 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [".env", ".env.local"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": []
},
"lint": {
"outputs": []
}
}
}