Configure more aggressive type checks
This commit is contained in:
parent
8729cf09b1
commit
5c80ec185d
3 changed files with 18 additions and 18 deletions
14
showbits-thermal-printer-ui/tsconfig.lint.json
Normal file
14
showbits-thermal-printer-ui/tsconfig.lint.json
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
// https://www.typescriptlang.org/tsconfig/
|
||||
{
|
||||
"compilerOptions": {
|
||||
// Type Checking
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noImplicitOverride": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"noUncheckedSideEffectImports": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"strict": true
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue