Document when emitSkipped
is true
in Compiler API
#49790
Labels
Needs Investigation
This issue needs a team member to investigate its status.
Suggestion
🔍 Search Terms
emitSkipped
, emit skippedOnly 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:
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 betrue
orfalse
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 ints-node
orts-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 onlytrue
when there is:rootDir
noEmitOnError: true
and there is a syntactic or semantic errornoEmit: 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
In my root cause analysis in
failed to transpile
tslib.es6.js
after update tov0.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 arootDir
issue.emitSkipped
wastrue
, but there were no syntactic or semantic errors. So I didn't know why it wastrue
. I did a ton of searching and eventually I stumbled upon the answer in this issue comment ints-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.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 throughts-node
's issues (which is not an official TS library) was pretty disconcerting to me.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
.emitSkipped: true
? Struggling to get an emit failure with 1.5 #2290 seems to suggest this, but it also doesn't explain what scenariosemitSkipped
would betrue
in (it's also a ~7 year old issue).emitSkipped: true
, then that means we have a redundant check on this line, and that my belief thatemitSkipped: true
means there was a diagnostic error is actually incorrect: refactor: split out a commontypecheckFile
func ezolenko/rollup-plugin-typescript2#344 (comment)In my root cause analysis in Vague
failed to transpile
error --noEmitOnError: true
breaks rpt2 ezolenko/rollup-plugin-typescript2#254 (comment), I discovered thatnoEmitOnError: true
will cause files to returnemitSkipped: true
, even if those files are not the ones with the error (i.e. a different file has a syntax or semantic error).noEmitOnError: true
, all files would haveemitSkipped: true
, even ones without errors in them. This caused rpt2 to abort early, without printing out the type-checking failure, as the file with the type-check issue hadn't been reached yet. In fix: forcenoEmitOnError: false
ezolenko/rollup-plugin-typescript2#338, I solved this by forcingnoEmitOnError: false
for now.(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)
emitSkipped
andnoEmitOnError
as mentioned above, as well as needing to implementrealpath
forLanguageServiceHost
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 asts-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.
The text was updated successfully, but these errors were encountered: