feat(monorepo): migrate to typescript monorepo

This commit is contained in:
2025-11-07 17:09:29 +02:00
committed by BernardNganduDev
parent 3e09956f05
commit 075a388ccb
745 changed files with 2341 additions and 5082 deletions
+43
View File
@@ -0,0 +1,43 @@
{
"$schema": "https://turborepo.com/schema.json",
"globalDependencies": ["**/.env"],
"ui": "tui",
"tasks": {
"topo": {
"dependsOn": ["^topo"]
},
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [
".next/**",
"!.next/cache/**",
"next-env.d.ts",
".expo/**",
"dist/**",
"build/**",
"lib/**"
],
"passThroughEnv": []
},
"start": {
"cache": false
},
"test": {
"cache": false
},
"dev": {
"inputs": ["$TURBO_DEFAULT$", ".env"],
"cache": false,
"persistent": true
},
"format": {},
"lint": {
"dependsOn": ["^topo"]
},
"typecheck": {
"dependsOn": ["^topo"],
"outputs": []
}
}
}