We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--exactOptionalPropertyTypes
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
This issue proposes to enable TS' --exactOptionalPropertyTypes option.
To enable this option,
npm:@types/vscode
undefined
bar?: Foo
bar?: Foo | undefined
The text was updated successfully, but these errors were encountered:
Auto merge of #15254 - tetsuharuohzeki:add-fixme-exactOptionalPropert…
785a33d
…yTypes, r=lnicola editor/code: Add FIXME comments for TS' `--exactOptionalPropertyTypes` option This add the FIXME comment for #15253
No branches or pull requests
This issue proposes to enable TS'
--exactOptionalPropertyTypes
option.To enable this option,
npm:@types/vscode
chages their optional property types to acceptundefined
(e.g.bar?: Foo
should bebar?: Foo | undefined
if there is no problem).undefined
to properties as marked as optional.The text was updated successfully, but these errors were encountered: