-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
68 lines (68 loc) · 1.58 KB
/
tsconfig.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
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"strictNullChecks": true,
"strictFunctionTypes": true,
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"mxAbstractCanvas2D.d.ts",
"mxEventSource.d.ts",
"mxPopupMenu.d.ts",
"mxCell.d.ts",
"mxGeometry.d.ts",
"mxPopupMenuHandler.d.ts",
"mxCellEditor.d.ts",
"mxGraph.d.ts",
"mxRectangle.d.ts",
"mxCellMarker.d.ts",
"mxGraphHandler.d.ts",
"mxRectangleShape.d.ts",
"mxCellOverlay.d.ts",
"mxGraphModel.d.ts",
"mxSelectionCellsHandler.d.ts",
"mxCellRenderer.d.ts",
"mxGraphSelectionModel.d.ts",
"mxSelectionModel.d.ts",
"mxCellState.d.ts",
"mxGraphView.d.ts",
"mxShape.d.ts",
"mxConnectionConstraint.d.ts",
"mxGuide.d.ts",
"mxStencil.d.ts",
"mxConnectionHandler.d.ts",
"mxImage.d.ts",
"mxStylesheet.d.ts",
"mxConnector.d.ts",
"mxImageBundle.d.ts",
"mxSvgCanvas2D.d.ts",
"mxConstants.d.ts",
"mxImageShape.d.ts",
"mxText.d.ts",
"mxConstraintHandler.d.ts",
"mxMarker.d.ts",
"mxTooltipHandler.d.ts",
"mxDictionary.d.ts",
"mxMouseEvent.d.ts",
"mxUndoableEdit.d.ts",
"mxEdgeHandler.d.ts",
"mxMultiplicity.d.ts",
"mxUrlConverter.d.ts",
"mxEdgeSegmentHandler.d.ts",
"mxPanningHandler.d.ts",
"mxVertexHandler.d.ts",
"mxEdgeStyle.d.ts",
"mxPanningManager.d.ts",
"mxVmlCanvas2D.d.ts",
"mxElbowEdgeHandler.d.ts",
"mxPoint.d.ts",
"mxEventObject.d.ts",
"mxPolyline.d.ts"
]
}