digidem / mapeo-map-server

Offline map style and tile server
MIT License
5 stars 2 forks source link

chore: update TypeScript to v5 #123

Closed EvanHahn closed 7 months ago

EvanHahn commented 7 months ago

This upgrades TypeScript from v4.7.4 to v5.3.3. This required a small number of type-related changes: updating the @typescript-eslint dependencies, updating the dependencies for @types/eventsource, and fixing a small type error in the import worker.

The dist/ folder looks very similar after this, though (1) source map files changed (2) TypeScript now adds the declare keyword in .d.ts files, such as:

-export type GlyphsResult = {
+export declare type GlyphsResult = {

There were no changes to any compiled .js files after this change.