Skip to content
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

Checkjs implies allowjs #40275

Merged
merged 5 commits into from
Sep 1, 2020
Merged

Checkjs implies allowjs #40275

merged 5 commits into from
Sep 1, 2020

Conversation

sandersn
Copy link
Member

If it's not explicitly provided.

Note that it's still an error to explicitly provide checkJs: true, allowJs: false.

This change makes the compiler options easier to use and to describe.

Even if you have `"allowJs": false`. This is not a useful combination.

Changing this makes the compiler more friendly and easier to describe.
@sandersn
Copy link
Member Author

@DanielRosenwasser @RyanCavanaugh @orta Do you think the new behaviour is reasonable?

@sheetalkamat @weswigham Is createProgram the right place to put this?

@weswigham
Copy link
Member

For other defaulted flags dependent on other flags, we have something like a getStrictCompilerOptionValue helper that we use everywhere rather than checking the compiler options directly (no, I don't think createProgram handles all inputs - transpileModule is notable for probably being unaffected). You should probably add a getAllowJSCompilerOption helper that we use everywhere rather than checking the flags directly.

@sandersn
Copy link
Member Author

I thought that might be the case. I switched to an accessor function getAllowJSCompilerOption instead.

@@ -3160,7 +3160,7 @@ namespace ts {
createDiagnosticForOptionName(Diagnostics.Option_0_cannot_be_specified_when_option_target_is_ES3, "useDefineForClassFields");
}

if (options.checkJs && !options.allowJs) {
if (options.checkJs && !getAllowJSCompilerOption(options)) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems incorrect condition. You want to check if options.allowJs === false here instead

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Duh, thanks for the catch.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, wait, that undoes the loosening from this PR. THe current code only errors when checkJs: true but allowJs: false explicitly.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (options.checkJs && !getAllowJSCompilerOption(options)) {
if (options.checkJs && options.allowJs === false) {

will also work and won’t require a function call.

@DanielRosenwasser
Copy link
Member

I'm not so sure how I feel about this. But I can't think of any reason why it's bad.

@sandersn sandersn added this to Not started in PR Backlog Sep 1, 2020
@sandersn
Copy link
Member Author

sandersn commented Sep 1, 2020

Chatted with @RyanCavanaugh, he couldn't either.

He also pointed out that maybe allowJs should default to true now. I'll investigate that next.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Author: Team For Uncommitted Bug PR for untriaged, rejected, closed or missing bug
Projects
Archived in project
PR Backlog
  
Done
Development

Successfully merging this pull request may close these issues.

None yet

6 participants