This commit is contained in:
2026-04-18 23:11:35 +02:00
commit f7cfd2a86e
196 changed files with 35538 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["tsconfig.base.json", ".env"],
"globalEnv": ["NODE_ENV"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "build/**", ".expo/**", "src-tauri/target/release/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^build"],
"outputs": []
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": ["*.tsbuildinfo"]
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"test:watch": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
}
}