Files
2026-08-17 16:35:14 -04:00

48 lines
868 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"EMAIL_PROVIDER",
"EMAIL_FROM",
"SMTP_HOST",
"SMTP_PORT",
"SMTP_SECURE",
"RESEND_API_KEY",
"RESEND_DOMAIN",
"RESEND_FROM"
],
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "dist/**"]
},
"@beenvoice/domain#build": {
"outputs": []
},
"@beenvoice/email#build": {
"outputs": []
},
"@beenvoice/mobile#build": {
"outputs": []
},
"@beenvoice/worker#build": {
"outputs": []
},
"typecheck": {
"dependsOn": ["^typecheck"],
"outputs": []
},
"lint": {
"dependsOn": ["^lint"],
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"outputs": []
}
}
}