-
Notifications
You must be signed in to change notification settings - Fork 15
feat: noUncheckedIndexedAccess support #31
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
base: master
Are you sure you want to change the base?
feat: noUncheckedIndexedAccess support #31
Conversation
|
Thanks to Ref: |
|
It looks like this repo is not maintained anymore, sadly. @danilofuchs have you perhaps built and published a version of your fork? |
Yes, I assume the repo owner migrated his project and stopped maintaining the tool. I believe you can install using my fork ref directly, but I haven't tried it myself. |
oh, actually ef702f3 is unfinished, ts-strictify/src/lib/typescript.ts Line 23 in 0a8c761
['--help', '--all'] |
|
Thanks for quick answer @danilofuchs !
I tried, using |
|
@falkenhawk I didn't even remember this, but I pushed a |
Adds support for
noUncheckedIndexedAccessflag, an even stricter flag.https://devblogs.microsoft.com/typescript/announcing-typescript-4-1-beta/#no-unchecked-indexed-access
Update: On issue microsoft/TypeScript#42659 the TS team instructed me to use
tsc --help --allflag, which solved the issue.Old comment, preserved for posterity
This change does not actually work, as this flag appears to not work when running
tsc, only with insidetsconfig.json.I created an issue on Typescript: microsoft/TypeScript#42659