Enable two more strict options in tsconfig (#33438)

These have no violations so are safe to enable

- https://www.typescriptlang.org/tsconfig/#strictBindCallApply
- https://www.typescriptlang.org/tsconfig/#strictBuiltinIteratorReturn
pull/33211/head^2
silverwind 2025-01-30 06:15:35 +01:00 committed by GitHub
parent 75940a0191
commit 48183d2b05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,8 @@
"verbatimModuleSyntax": true,
"stripInternal": true,
"strict": false,
"strictBindCallApply": true,
"strictBuiltinIteratorReturn": true,
"strictFunctionTypes": true,
"noImplicitAny": true,
"noImplicitThis": true,