Skip to content

Commit b574b14

Browse files
committed
Avoid typedoc errors in dependencies
> typedoc --name ol-cesium --excludeExternals --out dist/apidoc --entryPoints src/index.library.js --tsconfig ./tsconfig.json Error: node_modules/geotiff/dist-node/geotiffimage.d.ts:67:118 - error TS2304: Cannot find name 'Source'. 67 constructor(fileDirectory: any, geoKeys: any, dataView: DataView, littleEndian: boolean, cache: boolean, source: Source); ~~~~~~ Error: node_modules/geotiff/dist-node/geotiffimage.d.ts:75:13 - error TS2304: Cannot find name 'Source'. 75 source: Source; ~~~~~~ Error: node_modules/geotiff/dist-node/geotiffimage.d.ts:134:100 - error TS2304: Cannot find name 'AbstractDecoder'. 134 getTileOrStrip(x: number, y: number, sample: number, poolOrDecoder: import("./geotiff").Pool | AbstractDecoder, signal?: AbortSignal | undefined): Promise<ArrayBuffer>;
1 parent c5a4284 commit b574b14

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
//"checkJs": true,
66
"noEmit": true,
77
"baseUrl": "./",
8+
"skipLibCheck": true,
89
"moduleResolution": "node",
910
"paths": {
1011
"ol/*": ["node_modules/ol/*"]

0 commit comments

Comments
 (0)