Skip to content

Commit

Permalink
chore: 🎉 Replaced eight flags with "strict", added "noImplicitOverrid…
Browse files Browse the repository at this point in the history
…e" and "noImplicitReturns"
  • Loading branch information
Tomtec331 committed Feb 10, 2024
1 parent 6bff8f3 commit d947bac
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions backend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,12 @@
"removeComments": true,

/* Linting */
"alwaysStrict": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitAny": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,

"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,

"noImplicitOverride": false,
"noImplicitReturns": false
"noImplicitOverride": true,
"noImplicitReturns": true
},
"include": ["src"]
}

0 comments on commit d947bac

Please sign in to comment.