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

Ensure isolatedModules does not make scripts emit as modules #54218

Merged
merged 3 commits into from
May 12, 2023

Conversation

andrewbranch
Copy link
Member

Fixes #54094

Checking (scope considerations) has always considered these input files scripts, but in isolatedModules, compiling scripts used to be an error, so emit treated them as modules. Scripts are allowed in isolatedModules as of 5.0, but I didn’t realize they were being emitted as modules when I made that change. We need emit to be consistent with checking here, now that there’s no error for compiling a script.

@andrewbranch andrewbranch requested a review from rbuckton May 11, 2023 19:32
@typescript-bot typescript-bot added Author: Team For Milestone Bug PRs that fix a bug with a specific milestone labels May 11, 2023
}
};
});
import * as i0 from "./comp1";
Copy link
Member Author

Choose a reason for hiding this comment

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

@rbuckton I’m not sure what to do about this and the transpileModule tests, or if this is ok. I tried adding --moduleDetection force to the set of implicit transpileModule options and that broke a ton of stuff. I’m not sure what the rule is for when transpileModule produces module output, but it’s pretty odd to me that this does:

    transpilesCorrectly("Generates module output", `var x = 0;`, {
        options: { compilerOptions: { module: ts.ModuleKind.AMD } }
    });

when checking that file would clearly not consider it a module.

Copy link
Member

Choose a reason for hiding this comment

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

transpileModule expected all inputs are to be considered modules because isolatedModules expected all inputs to be modules. I think the issue for this test is that the new SourceFile we produce in the transform doesn't have an externalModuleIndicator, since we don't set that in the factory method, though we probably should.

Copy link
Member

@rbuckton rbuckton May 11, 2023

Choose a reason for hiding this comment

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

... though we probably should.

This is a bit of a tricky problem. A file that starts as a Module, but might have its import/export declarations transformed out should probably stay a Module (since that's how we type-checked it, and how it was written). It's a bit more confusing when you have a file that may or may not have been a Module, but you add import/export syntax to it.

Right now, a Module stays a Module because we'll just copy the module indicator over verbatim. We don't really use that contents of that value in transforms, merely its truthiness. If we switch to updating that value, we have to take care that we don't set it to a falsy value (i.e., undefined) when the file was a Module to begin with, otherwise we might break consumers of the API.

Copy link
Member

Choose a reason for hiding this comment

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

I think most of these tests were written under the assumption that each file would be treated as a module by transpileModule. It may be fine to just amend the tests with an export {} to preserve this, since most of these tests weren't specifically testing that assumption, but some other mechanism 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.

I think the behavior I’ve implemented in this PR is better in some sense, but I worry about breaking people who were using our transpile API, but never using us to type check. Should we be concerned about that?

@rbuckton
Copy link
Member

I'm surprised we relaxed isolatedModules to allow scripts. Wouldn't that have had an effect on --importHelpers? We may not have had a test for that combination.

@rbuckton
Copy link
Member

I'm surprised we relaxed isolatedModules to allow scripts. Wouldn't that have had an effect on --importHelpers? We may not have had a test for that combination.

Ah, it may not have mattered since we previously errored if the file was a Script and not a Module, so we wouldn't have tried to consider it a Module for the purpose of importing helpers.

var tslib_1 = require("tslib");
var __extends = (this && this.__extends) || (function () {
Copy link
Member

Choose a reason for hiding this comment

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

This is what I meant by this change affecting --importHelpers.

Copy link
Member Author

Choose a reason for hiding this comment

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

I think this is a correct change. The file is written as a script and checks as a script, so the output definitely can’t import the helpers, since that would make it lose its scriptiness.

@andrewbranch andrewbranch merged commit f0ff976 into main May 12, 2023
@andrewbranch andrewbranch deleted the bug/54094 branch May 12, 2023 22:14
@RyanCavanaugh RyanCavanaugh added the Breaking Change Would introduce errors in existing code label May 16, 2023
@andrewbranch andrewbranch changed the title isolatedModules does not imply every file is a module Ensure isolatedModules does not make scripts emit as modules May 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Author: Team Breaking Change Would introduce errors in existing code For Milestone Bug PRs that fix a bug with a specific milestone
Projects
None yet
Development

Successfully merging this pull request may close these issues.

isolatedModules acts like moduleDetection: "force"
5 participants