-
Notifications
You must be signed in to change notification settings - Fork 507
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redundant compiler options in template tsconfigs #619
Comments
Yea I removed the PR welcome to remove those.
Yea I see this myself but don't particularly find it that annoying. |
I think we could add a comment above the
or something |
There are a number of redundant compiler options in the current
tsconfig.json
, and it could be cleaned up or simplified by removing them.strict
already enablesnoImplicitAny
,noImplicitThis
,alwaysStrict
,strictNullChecks
,strictFunctionTypes
andstrictPropertyInitialization
.noUnusedLocals
andnoUnusedParameters
overlap with the@typescript-eslint/no-unused-vars
ESLint rule, which results in duplicate errors in the editor (after the user fixes this notable issue):This means, for example, that using the Go to Next Problem or Go to Previous Problem in the editor require being used twice to move past the same error.
The text was updated successfully, but these errors were encountered: