Skip to content

Instantly share code, notes, and snippets.

@tfkhdyt
Created March 26, 2025 02:23
Show Gist options
  • Save tfkhdyt/189212303039ca8a5171f9600dc2bbb5 to your computer and use it in GitHub Desktop.
Save tfkhdyt/189212303039ca8a5171f9600dc2bbb5 to your computer and use it in GitHub Desktop.
Type-safety tsconfig
{
"compilerOptions": {
"strict": true,
"alwaysStrict": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment