Skip to content

Document when emitSkipped is true in Compiler API #49790

Open
@agilgur5

Description

@agilgur5

Suggestion

🔍 Search Terms

emitSkipped, emit skipped

Only related issue I could find in this repo was #2290, which is ~7 years old, and I'm not sure is accurate anymore?

✅ Viability Checklist

My suggestion meets these guidelines:

  • This wouldn't be a breaking change in existing TypeScript/JavaScript code
  • This wouldn't change the runtime behavior of existing JavaScript code
  • This could be implemented without emitting different JS based on the types of the expressions
  • This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, new syntax sugar for JS, etc.)
  • This feature would agree with the rest of TypeScript's Design Goals.

It's a docs change, so no behavior change.

⭐ Suggestion

I help maintain rollup-plugin-typescript2, and, as such, rely heavily on the TS Compiler API and its docs.

Currently, the documentation for emitSkipped is virtually non-existent. It is only referenced in code samples in this Wiki page. How it works and why it may be true or false is never explained in the docs.

Doing a Google search for emitSkipped also gets very few results, that mostly point to the Wiki code samples, duplicates/forks of it, or a specific issue in ts-node or ts-jest. So effectively, there is no explanation to be found anywhere.
Diving into the source code has not been particularly helpful either, as it also doesn't document emitSkipped. Similar for the test code.

This is very confusing to many libraries that rely on TS Compiler API and their users, so having explicit documentation for this would be very helpful.
(As would improving the Compiler API docs in general).

As far as my current interpretation goes, emitSkipped is only true when there is:

  1. a file outside of the rootDir
  2. a file that would overwrite another file
  3. noEmitOnError: true and there is a syntactic or semantic error
  4. probably noEmit: true as well given the above?

Not sure if I'm missing other cases though, as I don't really have a source of truth to base this on.

📃 Motivating Example

  1. In my root cause analysis in failed to transpile tslib.es6.js after update to v0.30.0 ezolenko/rollup-plugin-typescript2#264 (comment) (search "emitSkipped", it's pretty long), I had to dig pretty deep to figure out what was going on, and it turns out it was a rootDir issue.

    • But the only way I could decipher that something was wrong was because emitSkipped was true, but there were no syntactic or semantic errors. So I didn't know why it was true. I did a ton of searching and eventually I stumbled upon the answer in this issue comment in ts-node: Importing a file outside of the project folder causes: Emit skipped error TypeStrong/ts-node#693 (comment).
      That helped me figure out that the file was not in the rootDir, which was indeed the problem.
    • But TS itself gave no such error message, just emitSkipped: true. And there was no information on the Wiki or in the issues in TS's own repo; having to figure this out by looking through ts-node's issues (which is not an official TS library) was pretty disconcerting to me.
  2. In creating integration tests in test: add initial integration test suite ezolenko/rollup-plugin-typescript2#371 (comment), I legitimately couldn't figure out how to trigger emitSkipped: true.

  3. In my root cause analysis in Vague failed to transpile error -- noEmitOnError: true breaks rpt2 ezolenko/rollup-plugin-typescript2#254 (comment), I discovered that noEmitOnError: true will cause files to return emitSkipped: true, even if those files are not the ones with the error (i.e. a different file has a syntax or semantic error).

  4. (Heavily related, I created a label in rpt2 for issues who's root cause is effectively due to lack of Compiler API docs, so we just didn't know to handle such a situation)

    • (This encompasses emitSkipped and noEmitOnError as mentioned above, as well as needing to implement realpath for LanguageServiceHost to support monorepos with symlinks, i.e. pnpm, Lerna, etc, which is completely undocumented)

💻 Use Cases

This is for most Compiler API users and would impact rollup-plugin-typescript2 as well as related integrations such as ts-jest, ts-node, ts-loader, etc, etc.

The shortcomings with the current approach is that community integrations rely on a patchwork of a tiny amount of docs, issue comments in other TS integrations, and basically reverse-engineering the Compiler API to figure out how it works. Or, as another workaround, reading TypeScript's own source code or tests, with mixed results.

Metadata

Metadata

Assignees

Labels

Needs InvestigationThis issue needs a team member to investigate its status.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions