Files
OpenCut/turbo.json
2025-08-04 03:13:57 +02:00

37 lines
748 B
JSON

{
"$schema": "https://turborepo.com/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"],
"env": [
"DATABASE_URL",
"BETTER_AUTH_SECRET",
"UPSTASH_REDIS_REST_URL",
"UPSTASH_REDIS_REST_TOKEN",
"MARBLE_WORKSPACE_KEY",
"FREESOUND_CLIENT_ID",
"FREESOUND_API_KEY"
]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"persistent": true,
"cache": false
},
"lint": {
"dependsOn": ["^lint"],
"cache": false
},
"lint:fix": {
"dependsOn": ["^lint:fix"],
"cache": false
},
"format": {
"dependsOn": ["^format"]
}
}
}