-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedoc.json
24 lines (24 loc) · 961 Bytes
/
typedoc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["./src/index.ts"],
"excludePrivate": true,
"excludeProtected": false,
"excludeNotDocumented": false,
"out": "build/gh-pages/typedoc",
"validation": {
"notExported": true,
"invalidLink": true,
"notDocumented": true
},
"externalSymbolLinkMappings": {
"@types/leaflet": {
"Control.ScaleOptions": "https://leafletjs.com/reference.html#control-scale-option",
"GeoJSONOptions": "https://leafletjs.com/reference.html#geojson-option",
"ImageOverlayOptions": "https://leafletjs.com/reference.html#imageoverlay-option",
"MapOptions": "https://leafletjs.com/reference.html#map-option",
"TileLayerOptions": "https://leafletjs.com/reference.html#tilelayer-option",
"VideoOverlayOptions": "https://leafletjs.com/reference.html#videooverlay-option",
"WMSOptions": "https://leafletjs.com/reference.html#tilelayer-wms-option"
}
}
}