Files
freeCodeCamp/turbo.json
2026-02-13 10:27:25 +01:00

18 lines
599 B
JSON

{
"$schema": "https://v2-8-7.turborepo.dev/schema.json",
"globalPassThroughEnv": ["MONGOHQ_URL"],
"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"]
}
},
"remoteCache": { "signature": true }
}