Skip to content

Commit

Permalink
Add more TS checks.
Browse files Browse the repository at this point in the history
  • Loading branch information
junhaoliao committed Dec 31, 2024
1 parent 89dfb45 commit 1f50cb1
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions components/log-viewer-webui/server/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,26 @@
"removeComments": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "es2022"
"target": "es2022",

"alwaysStrict": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": true,
"strict": true
},
"include": [
"src/**/*"
]
}
}

0 comments on commit 1f50cb1

Please sign in to comment.