-
-
Save EdwardDiehl/4f1930cb7279e301c6a380a735ebbca5 to your computer and use it in GitHub Desktop.
The most strict TypeScript tsconfig mode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "compilerOptions": { | |
| // Strict Checks | |
| "alwaysStrict": true, | |
| "noImplicitAny": true, | |
| "strictNullChecks": true, | |
| "useUnknownInCatchVariables": true, | |
| "strictPropertyInitialization": true, | |
| "strictFunctionTypes": true, | |
| "noImplicitThis": true, | |
| "strictBindCallApply": true, | |
| "noPropertyAccessFromIndexSignature": true, | |
| "noUncheckedIndexedAccess": true, | |
| "exactOptionalPropertyTypes": true, | |
| // Linter Checks | |
| "noImplicitReturns": true, | |
| "noImplicitOverride": true, | |
| "forceConsistentCasingInFileNames": true, | |
| // https://eslint.org/docs/rules/consistent-return ? | |
| "noFallthroughCasesInSwitch": true, | |
| // https://eslint.org/docs/rules/no-fallthrough | |
| "noUnusedLocals": true, | |
| // https://eslint.org/docs/rules/no-unused-vars | |
| "noUnusedParameters": true, | |
| // https://eslint.org/docs/rules/no-unused-vars#args | |
| "allowUnreachableCode": false, | |
| // https://eslint.org/docs/rules/no-unreachable ? | |
| "allowUnusedLabels": false, | |
| // https://eslint.org/docs/rules/no-unused-labels | |
| // Base Strict Checks | |
| "noImplicitUseStrict": false, | |
| "suppressExcessPropertyErrors": false, | |
| "suppressImplicitAnyIndexErrors": false, | |
| "noStrictGenericChecks": false | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment