a programming education platform www.hypercommit.com
education
1
fork

Configure Feed

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

at master 24 lines 462 B view raw
1{ 2 "$schema": "https://turbo.build/schema.json", 3 "ui": "tui", 4 "tasks": { 5 "build": { 6 "dependsOn": ["^build"], 7 "inputs": ["$TURBO_DEFAULT$", ".env*"], 8 "outputs": [".next/**", "!.next/cache/**"] 9 }, 10 "lint": { 11 "dependsOn": ["^lint"] 12 }, 13 "format": { 14 "dependsOn": ["^format"] 15 }, 16 "typecheck": { 17 "dependsOn": ["^typecheck"] 18 }, 19 "dev": { 20 "cache": false, 21 "persistent": true 22 } 23 } 24}