A replica of Keytrace
at main 20 lines 367 B view raw
1{ 2 "$schema": "https://turborepo.dev/schema.json", 3 "tasks": { 4 "build": { 5 "dependsOn": ["^build"], 6 "outputs": ["dist/**", ".nuxt/**", ".output/**"] 7 }, 8 "dev": { 9 "cache": false, 10 "persistent": true 11 }, 12 "test": { 13 "dependsOn": ["build"] 14 }, 15 "lint": {}, 16 "typecheck": { 17 "dependsOn": ["^build"] 18 } 19 } 20}