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
This commit is contained in:
parent
75940a0191
commit
48183d2b05
1 changed files with 2 additions and 0 deletions
|
@ -22,6 +22,8 @@
|
|||
"verbatimModuleSyntax": true,
|
||||
"stripInternal": true,
|
||||
"strict": false,
|
||||
"strictBindCallApply": true,
|
||||
"strictBuiltinIteratorReturn": true,
|
||||
"strictFunctionTypes": true,
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue