We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
the @deno_types directive don't work correctly in vscode type check. For example: a.js
export const a = 100
a.d.ts
declare const a: boolean export {a}
Variable a should has type boolean instead of number literal 100 in vscode type checker.
a
boolean
100
deno builtin type checker is correct when i run the program.
The text was updated successfully, but these errors were encountered:
WIP
Sorry, something went wrong.
Still report error after upgrade vscode deno plugin version to 1.24.0
Successfully merging a pull request may close this issue.
the @deno_types directive don't work correctly in vscode type check. For example:
a.js
a.d.ts
Variable
a
should has typeboolean
instead of number literal100
in vscode type checker.deno builtin type checker is correct when i run the program.
The text was updated successfully, but these errors were encountered: