Files
GibSend/turbo.json
KMKoushik 9032efa9b2 Setup app
2024-03-19 09:34:23 +11:00

42 lines
644 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
"**/.env.*local"
],
"globalDotEnv": [
".env"
],
"pipeline": {
"build": {
"dependsOn": [
"^build",
"db:generate"
],
"outputs": [
".next/**",
"!.next/cache/**"
]
},
"lint": {
"dependsOn": [
"^lint"
]
},
"dev": {
"cache": false,
"persistent": true,
"dotEnv": [
".env"
],
"dependsOn": [
"db:generate"
]
},
"db:generate": {
"cache": false
},
"db:push": {
"cache": false
}
}
}