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

Update TypeScript to v3.8 #10934

Merged
merged 13 commits into from
Apr 15, 2020
Merged

Update TypeScript to v3.8 #10934

merged 13 commits into from
Apr 15, 2020

Conversation

ahocevar
Copy link
Member

This pull request makes several fixes related to types, which allows us to upgrade to the latest TypeScript version.

Most issues were around private/protected/public scope problems. I resolved some of them by refactoring the way we pass functions to the contstructor (e.g. tileUrlFunction). Now we simply rely on inheritance for that. A broader field of problems were the XML formats. Due to the way these allow matching and mixing properties and functions from other formats, I had to remove private/protected restrictions from these properties and functions.

This pull request also contains one commit that works around microsoft/TypeScript#33575, b0f20d6 to make npm run typecheck pass. We might be able to revert that commit when the TypeScript issue is fixed. Also, until that TypeScript issue is fixed, enum types in applications still do not work correctly.

When these changes are in, TypeScript projects can also benefit from the types that are directly derived from the sources in the package's src/ folder.

@tschaub
Copy link
Member

tschaub commented Apr 15, 2020

Wow. Thanks for all the careful work on this, @ahocevar.

Odd not to see a CircleCI pipeline running for this. I wonder if you need to push a new commit.

@@ -290,7 +290,7 @@ class CanvasTileLayerRenderer extends CanvasLayerRenderer {

// set scale transform for calculating tile positions on the canvas
composeTransform(
this.tempTransform_,
this.tempTransform,
Copy link
Member

Choose a reason for hiding this comment

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

I'm happy to see all these _ suffixed properties go.

@ahocevar ahocevar merged commit 12043e1 into openlayers:master Apr 15, 2020
@ahocevar ahocevar deleted the type-fixes branch April 15, 2020 20:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants