Files
freeCodeCamp/turbo.json
2026-01-30 22:16:25 +05:30

16 lines
509 B
JSON

{
"$schema": "https://turborepo.com/schema.json",
"tasks": {
"build": { "dependsOn": ["setup"], "outputs": ["dist/**"] },
"develop": { "dependsOn": ["setup"], "cache": false, "persistent": true },
"lint": { "dependsOn": ["setup"] },
"setup": { "dependsOn": ["^build"] },
"test": { "dependsOn": ["setup"] },
"test-content": { "dependsOn": ["setup"] },
"type-check": { "dependsOn": ["setup"] },
"//#lint-root": {
"dependsOn": ["@freecodecamp/shared#build"]
}
}
}