diff --git a/docs/superpowers/plans/2026-08-06-trails.md b/docs/superpowers/plans/2026-08-06-trails.md index dbb3f08..8045017 100644 --- a/docs/superpowers/plans/2026-08-06-trails.md +++ b/docs/superpowers/plans/2026-08-06-trails.md @@ -1690,7 +1690,10 @@ npm install maplibre-gl * Komponente in Liste, Detailseite und Setzmodus gleichermaßen nutzbar. */ import { onMount } from 'svelte' - import maplibregl, { type Map as MapLibreMap, type Marker } from 'maplibre-gl' + // maplibre-gl 6.x hat keinen Default-Export — ein `import maplibregl from` + // scheitert mit TS1192. + import * as maplibregl from 'maplibre-gl' + import type { Map as MapLibreMap, Marker } from 'maplibre-gl' import 'maplibre-gl/dist/maplibre-gl.css' type LineGeoJSON = { type: 'LineString'; coordinates: [number, number][] }