pockethost/turbo.json
2024-06-27 19:14:29 -07:00

25 lines
449 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build", "^check-types"]
},
"check-types": {
"dependsOn": ["^sherif", "^lint", "^check-types"]
},
"lint": {
"dependsOn": ["^lint"]
},
"lint-fix": {
"dependsOn": ["^lint-fix"]
},
"sherif": {
"dependsOn": ["^sherif"]
},
"dev": {
"persistent": true,
"cache": false
}
}
}