Skip to content

Instantly share code, notes, and snippets.

@ptesser
Last active March 3, 2020 23:32
Show Gist options
  • Save ptesser/ef8c891dfc3a87d4d5136d9ad722eb7a to your computer and use it in GitHub Desktop.
Save ptesser/ef8c891dfc3a87d4d5136d9ad722eb7a to your computer and use it in GitHub Desktop.
TS config with strict rules
{
"compilerOptions": {
...
"noImplicitAny": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noImplicitThis": true,
...
}
}
@ptesser
Copy link
Author

ptesser commented Jan 30, 2019

Typescrpit config's file to enable strict check rules.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment