Files
create-better-t-stack/turbo.json

30 lines
477 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$"],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"check": {
"dependsOn": ["^check"]
},
"dev": {
"cache": false,
"persistent": true
},
"deploy": {
"cache": false,
"persistent": true
},
"deploy:convex": {
"cache": false,
"persistent": true
}
}
}