[READ-ONLY] Mirror of https://github.com/flo-bit/skywatched. review movies and tv shows, based on at proto skywatched.app
0

Configure Feed

Select the types of activity you want to include in your feed.

skywatched / turbo.json
413 B 34 lines
1{ 2 "$schema": "https://turbo.build/schema.json", 3 "ui": "tui", 4 "tasks": { 5 "build": { 6 "dependsOn": [ 7 "^build" 8 ], 9 "inputs": [ 10 "$TURBO_DEFAULT$", 11 ".env*" 12 ], 13 "outputs": [ 14 ".next/**", 15 "!.next/cache/**" 16 ] 17 }, 18 "lint": { 19 "dependsOn": [ 20 "^lint" 21 ] 22 }, 23 "check-types": { 24 "dependsOn": [ 25 "^check-types" 26 ] 27 }, 28 "dev": { 29 "cache": false, 30 "persistent": true 31 } 32 } 33} 34