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
+4 -2
View File
@@ -4,7 +4,8 @@
"scripts": {
"lint": "eslint --max-warnings 0",
"playwright:watch": "playwright test --ui-port=0",
"playwright:run": "playwright test"
"playwright:run": "playwright test",
"type-check": "tsc --noEmit"
},
"author": "freeCodeCamp <team@freecodecamp.org>",
"license": "BSD-3-Clause",
@@ -12,6 +13,7 @@
"devDependencies": {
"@freecodecamp/eslint-config": "workspace:*",
"@freecodecamp/shared": "workspace:*",
"eslint": "^9.39.1"
"eslint": "^9.39.1",
"typescript": "5.9.3"
}
}