Chore: Fix some more typescript strict errors (#37750)

This commit is contained in:
Ashley Harrison
2021-08-11 09:10:41 +01:00
committed by GitHub
parent 4cf097c4e5
commit 181d6a78ed
7 changed files with 31 additions and 44 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ set -e
echo -e "Collecting code stats (typescript errors & more)"
ERROR_COUNT_LIMIT=61
ERROR_COUNT_LIMIT=50
ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --strict true | grep -oP 'Found \K(\d+)')"
if [ "$ERROR_COUNT" -gt $ERROR_COUNT_LIMIT ]; then