amati/turbo.json
2024-06-17 02:12:58 +07:00

27 lines
395 B
JSON

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