forked from mapillary/mapillary-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.docs.json
69 lines (69 loc) · 3.19 KB
/
tsconfig.docs.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"compilerOptions": {
"noImplicitAny": true,
"target": "ES5",
"module": "commonjs",
"types": []
},
"files": [
"./src/api/interfaces/IGPano.ts",
"./src/api/interfaces/ILatLon.ts",
"./src/component/interfaces/ICacheConfiguration.ts",
"./src/component/interfaces/IDirectionConfiguration.ts",
"./src/component/interfaces/IKeyboardConfiguration.ts",
"./src/component/interfaces/IMarkerConfiguration.ts",
"./src/component/interfaces/IMouseConfiguration.ts",
"./src/component/interfaces/INavigationConfiguration.ts",
"./src/component/interfaces/ISequenceConfiguration.ts",
"./src/component/interfaces/ISliderConfiguration.ts",
"./src/component/interfaces/ITagConfiguration.ts",
"./src/component/keyboard/KeyboardComponent.ts",
"./src/component/keyboard/KeyPlayHandler.ts",
"./src/component/keyboard/KeySequenceNavigationHandler.ts",
"./src/component/keyboard/KeySpatialNavigationHandler.ts",
"./src/component/keyboard/KeyZoomHandler.ts",
"./src/component/marker/MarkerComponent.ts",
"./src/component/marker/marker/SimpleMarker.ts",
"./src/component/marker/marker/CircleMarker.ts",
"./src/component/marker/interfaces/ICircleMarkerOptions.ts",
"./src/component/marker/interfaces/IMarkerEvent.ts",
"./src/component/marker/interfaces/ISimpleMarkerOptions.ts",
"./src/component/mouse/MouseComponent.ts",
"./src/component/mouse/DoubleClickZoomHandler.ts",
"./src/component/mouse/DragPanHandler.ts",
"./src/component/mouse/ScrollZoomHandler.ts",
"./src/component/mouse/TouchZoomHandler.ts",
"./src/component/popup/PopupComponent.ts",
"./src/component/popup/popup/Popup.ts",
"./src/component/popup/interfaces/IPopupOffset.ts",
"./src/component/popup/interfaces/IPopupOptions.ts",
"./src/component/tag/geometry/PointGeometry.ts",
"./src/component/tag/geometry/PolygonGeometry.ts",
"./src/component/tag/geometry/RectGeometry.ts",
"./src/component/tag/interfaces/IOutlineTagOptions.ts",
"./src/component/tag/interfaces/ISpotTagOptions.ts",
"./src/component/tag/tag/OutlineTag.ts",
"./src/component/tag/tag/SpotTag.ts",
"./src/component/tag/TagComponent.ts",
"./src/component/tag/TagMode.ts",
"./src/component/NavigationComponent.ts",
"./src/graph/edge/interfaces/IEdge.ts",
"./src/graph/edge/interfaces/IEdgeData.ts",
"./src/graph/edge/EdgeDirection.ts",
"./src/graph/interfaces/IEdgeStatus.ts",
"./src/graph/interfaces/ILoadStatus.ts",
"./src/graph/interfaces/IMesh.ts",
"./src/graph/FilterExpression.ts",
"./src/graph/Node.ts",
"./src/graph/NodeCache.ts",
"./src/render/RenderMode.ts",
"./src/state/TransitionMode.ts",
"./src/viewer/interfaces/IComponentOptions.ts",
"./src/viewer/interfaces/IViewerMouseEvent.ts",
"./src/viewer/interfaces/IViewerOptions.ts",
"./src/viewer/Alignment.ts",
"./src/viewer/ImageSize.ts",
"./src/viewer/Viewer.ts",
"./src/Support.ts"
]
}