Skip to content
This repository was archived by the owner on May 5, 2022. It is now read-only.

Allow package.json files to be piped into the builder to support typeVersions #81

Closed
wants to merge 1 commit into from

Conversation

rbuckton
Copy link
Contributor

This PR fixes an issue that is currently blocking microsoft/vscode#77835.

In TypeScript 3.1 we added support for a compiler version compatibility feature known as "typesVersions". When the compiler attempts to resolve an import or type reference directive we now look for a "typesVersions" field in the referenced import's package.json file. This field indicates path redirections based on the version of the running TypeScript compiler.

Unfortunately, when gulp-tsb is run with noFilesystemLookup enabled, the compiler is unable to look up the package.json file. This is further exacerbated in the case of microsoft/vscode#77835, as vscode includes node_modules/@types/**/*.d.ts in the set of files piped to gulp-tsb, resulting in colliding declarations due to the inclusion of both @types/node/index.d.ts and @types/node/ts3.2/index.d.ts.

I've made the following changes to address these issues:

  • When acquiring the rootNames to be provided to TypeScript, any non .ts/.tsx (or .js/.jsx in the case of allowJS) file is removed. This allows package.json files to be piped into a gulp-tsb builder so that they can be discovered when noFilesystemLookup is enabled.
  • To support the module resolution needed for "typesVersions" when noFilesystemLookup is enabled, the getDirectories method of Host is implemented to emulate a directory list using the file list known to the host.
  • I added an excludeNodeModulesFromRootNames option to prevent cases such as when both node_modules/@types/node/index.d.ts and node_modules/@types/node/ts3.2/index.d.ts are included in the rootNames (which would effectively ignore the setting for "typesVersions" as they are explicitly provided).
  • I added a createWithIConfiguration function export that allows you to specify the excludeNodeModulesFromRootNames option along with a path to a tsconfig.json file so as not to clutter the default create function export.

@rbuckton
Copy link
Contributor Author

cc: @jrieken, @weswigham

@rbuckton rbuckton force-pushed the supportTypesVersions branch 2 times, most recently from 2aa12bb to e43092e Compare August 21, 2019 23:21
@weswigham
Copy link

weswigham commented Aug 21, 2019

We should be considering this before the 3.6 TS release so vscode can actually be built, right?

@rbuckton
Copy link
Contributor Author

There are no changes to TypeScript needed to support this. This issue lies solely in gulp-tsb.

@rbuckton rbuckton force-pushed the supportTypesVersions branch from e43092e to 610e902 Compare August 21, 2019 23:33
@@ -195,6 +195,12 @@ export module maps {
map.remove = multiMapRemove;
return map;
}
export function createUniqueMultiMap<T>(): MultiMap<T> {
Copy link
Contributor

Choose a reason for hiding this comment

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

Is this function being used?

function getDirectories(path: string): string[] {
return !noFileSystemLookup && ts.sys.getDirectories(path);
function addTrailingDirectorySeparator(file: string) {
return file && file.charAt(file.length - 1) !== '/' ? file + '/' : file;
Copy link
Contributor

Choose a reason for hiding this comment

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

Do we need to use path.sep for these checks so that it works properly cross platform?

@jrieken
Copy link
Owner

jrieken commented Aug 22, 2019

Sorry, but VS Code isn't using gulp-tsb@master but gulp-tsb@2.0.x. That means we won't benefit from any of the changes here.

Can someone explain to me what this effort is all about? It seems that I missed something. Can VS Code not be compiled with TS 3.6 without these or other changes? Is just the noFilesystemLookup the issue (which you should be able to change on our side but likely at the cost of performance)?

Generally, we want to get out of gulp-tsb and use the tsc as-is. We only have gulp-tsb because tsc -w was never fast enough. (I believe that has changed). Apart from (fast) compile via gulp-tsb we need gulp for copying resources like css or image-files. Tho, that's easy to keep. The theme so far was "no investment as long as gulp-tsb is still runnning" but if gulp-tsb is now falling apart then I would be very much in favour of sunsetting it.

@rbuckton
Copy link
Contributor Author

The approach we've taken in the TypeScript repo is to just call tsc -b: https://github.com/microsoft/TypeScript/blob/master/scripts/build/projects.js

Our build just queues up parallel requests to build projects and passes them all at once to a single tsc -b invocation so that tsc -b can handle building project reference dependencies.

@jrieken
Copy link
Owner

jrieken commented Aug 22, 2019

The approach we've taken in the TypeScript repo is to just call tsc -b:

Given that we only have one project, is the -b option just for caching files on disk for faster compile-startup or does the watch-mode also get faster by this?

@jrieken
Copy link
Owner

jrieken commented Aug 22, 2019

Follow-up question on https://www.typescriptlang.org/docs/handbook/project-references.html#caveats. Does that apply to syntax errors only or also to semantic errors?

@weswigham
Copy link

If you don't have multiple projects, --incremental is all that's needed now.

@jrieken
Copy link
Owner

jrieken commented Sep 4, 2019

Given that tsc -w performance doesn't compare to gulp-tsb (yet?) we should probably revisit this PR.

Unfortunately, when gulp-tsb is run with noFilesystemLookup enabled, the compiler is unable to look up the package.json

Let's take a step back. Is enabling file system lookup and disabling piping of node_modules/@type/... all that's needed here? That should be doable with little effort.

@rbuckton
Copy link
Contributor Author

rbuckton commented Sep 4, 2019

Is enabling file system lookup and disabling piping of node_modules/@type/... all that's needed here? That should be doable with little effort.

Essentially, yes.

@jrieken
Copy link
Owner

jrieken commented Sep 6, 2019

Great. I pushed a few changes to gulp-tsb and published it as 4.0.0 - gulp-tsb is now allowed to read files (we see how that affects perf) and things compile with postinstall-deletion-hacks. Closing PR

@jrieken jrieken closed this Sep 6, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants