Skip to content

Commit

Permalink
chore: Enforce type check (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikuroXina authored Feb 2, 2024
1 parent 1d20cfc commit 9343a00
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@
"isolatedModules": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"useUnknownInCatchVariables": true,
"exactOptionalPropertyTypes": true,
"declaration": true,
"emitDeclarationOnly": true,
"verbatimModuleSyntax": true,
Expand Down

0 comments on commit 9343a00

Please sign in to comment.