-
Notifications
You must be signed in to change notification settings - Fork 12.5k
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
Bloomberg feedback on TypeScript 4.6 Beta #47814
Comments
Interesting. Can you share what kind of grammar errors were encountered? |
Yes. It's worth pointing out that previous versions of the compiler issued syntax errors from the parser on JS files, with no way to turn them off. That behaviour hasn't changed. The grammar errors that now appear with checkJs unspecified are supposed to be a similar class of syntax error, but too complex to issue from the parser. |
Virtually all of the grammar errors that are now reported are redeclaration errors. They are technically valid errors for our JavaScript source, and we're actively working on fixing them. However, without going into too much detail, they don't cause runtime errors for our specific runtime. As such our solution is to set |
Can you describe the structure of the files that contain the redeclaration errors? Are they scripts (files without import/export)? Are they compiled all at once, but loaded or bundled individually? |
@molisani It would help me to talk to you to decide whether Bloomberg's errors will appear in most other codebases and whether to turn off that error. I sent you a DM on twitter in case you have time in the next couple of days. |
From talking in person, it sounds like the mismatch between the new errors and the runtime should only apply to Bloomberg, and the few other people who are using that (quite old) runtime. |
This issue has been created by the team responsible for the infrastructure behind most of Bloomberg's TypeScript code.
Summary
We have tested TypeScript
4.6.0-beta
on our codebase and our experimentation has not revealed any new errors in TypeScript source, pointing to this being a straightforward update.Grammar Errors in JavaScript Files
As reported in the 4.6 iteration plan, TypeScript now reports grammar errors for JavaScript files contained within TypeScript projects: #45349
These errors are now reported even when
checkJs
is not specified, and require explicitcheckJs: false
to disable them:Before:
checkJs
false
or <unspecified>: no diagnostics on *.js filescheckJs
true
: grammar + inference-based type errors on *.js filesAfter:
checkJs
false
: no diagnostics on *.js filescheckJs
<unspecified>: grammar errors on *.js filescheckJs
true
: grammar + inference-based type errors on *.js filesIs it intentional that users now need to be explicit to avoid any errors on *.js files?
Credits to @dragomirtitian & @tchetwin for helping with this investigation.
The text was updated successfully, but these errors were encountered: