mirror of https://github.com/go-gitea/gitea.git
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/#strictBuiltinIteratorReturnpull/33211/head^2
parent
75940a0191
commit
48183d2b05
|
@ -22,6 +22,8 @@
|
|||
"verbatimModuleSyntax": true,
|
||||
"stripInternal": true,
|
||||
"strict": false,
|
||||
"strictBindCallApply": true,
|
||||
"strictBuiltinIteratorReturn": true,
|
||||
"strictFunctionTypes": true,
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
|
|
Loading…
Reference in New Issue