Files
popcorntime/turbo.json
2025-10-01 09:41:15 -04:00

28 lines
528 B
JSON

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