chore: use turborepo for type checking (#64455)

This commit is contained in:
Oliver Eyton-Williams
2026-01-19 14:35:27 +01:00
committed by GitHub
parent 2ce0ff1560
commit 608afa8a39
17 changed files with 245 additions and 443 deletions
+9
View File
@@ -2,6 +2,7 @@
"$schema": "https://turborepo.com/schema.json",
"tasks": {
"lint": { "dependsOn": ["compile"] },
"type-check": { "dependsOn": ["compile"] },
"@freecodecamp/client#lint": {
"dependsOn": [
"@freecodecamp/curriculum#compile",
@@ -9,6 +10,14 @@
"build:scripts"
]
},
"@freecodecamp/client#type-check": {
"dependsOn": [
"@freecodecamp/curriculum#compile",
"create:env",
"@freecodecamp/curriculum#build",
"build:scripts"
]
},
"@freecodecamp/gatsby-source-challenges#lint": {
"dependsOn": ["@freecodecamp/curriculum#compile"]
},