Skip to content

Instantly share code, notes, and snippets.

@unrevised6419
Last active November 21, 2024 18:39
Show Gist options
  • Save unrevised6419/7cf4385eff76626faec7aeab69e3996a to your computer and use it in GitHub Desktop.
Save unrevised6419/7cf4385eff76626faec7aeab69e3996a to your computer and use it in GitHub Desktop.
Strict tsconfig.json
{
"compilerOptions": {
"strict": true,
"noEmitOnError": false,
"useUnknownInCatchVariables": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"exactOptionalPropertyTypes": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"verbatimModuleSyntax": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment