Last active
March 3, 2020 23:32
-
-
Save ptesser/ef8c891dfc3a87d4d5136d9ad722eb7a to your computer and use it in GitHub Desktop.
TS config with strict rules
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
{ | |
"compilerOptions": { | |
... | |
"noImplicitAny": true, | |
"noUnusedParameters": true, | |
"noImplicitReturns": true, | |
"noImplicitThis": true, | |
... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Typescrpit config's file to enable strict check rules.