Files
popcorntime/turbo.json
Pochoclin cb56278a9f feat: initial commit
fix: fmt

Signed-off-by: pochoclin <hey@popcorntime.app>
2025-09-15 17:08:48 -04:00

25 lines
454 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["^test"]
},
"type-check": {
"dependsOn": ["^type-check"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}