Description
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:
- a file outside of the
rootDir
- a file that would overwrite another file
noEmitOnError: true
and there is a syntactic or semantic error- 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
-
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.- But the only way I could decipher that something was wrong was because
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 therootDir
, 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 throughts-node
's issues (which is not an official TS library) was pretty disconcerting to me.
- But the only way I could decipher that something was wrong was because
-
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
.- It seems that semantic or syntactic errors no longer result in
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). - If that is accurate that type-check errors no longer result in
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)
- It seems that semantic or syntactic errors no longer result in
-
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).- Basically what Struggling to get an emit failure with 1.5 #2290 (comment) says, but this is not actually documented anywhere.
- Also did not expect that, when
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)
- (This encompasses
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)
- (This encompasses
💻 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.