-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.types.json
More file actions
executable file
·52 lines (52 loc) · 2.35 KB
/
tsconfig.types.json
File metadata and controls
executable file
·52 lines (52 loc) · 2.35 KB
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
{
"typedocOptions": {
"mode": "file",
"disableSources": true,
"theme": "minimal",
"hideGenerator": true,
"includeDeclarations": true,
"excludeExternals": true,
"inputFiles": [
"./types/index.d.ts",
"./node_modules/@drayman/types/types/index.d.ts",
],
"media": "./assets",
"toc": [
""
]
},
"compilerOptions": {
"outDir": "./dist/types",
"declaration": true,
"emitDeclarationOnly": true
},
"include": [
"./projects/text-field/src/app/models/text-field-options.ts",
"./projects/number-field/src/app/models/number-field-options.ts",
"./projects/select/src/app/models/select-options.ts",
"./projects/youtube-player/src/app/models/youtube-player-options.ts",
"./projects/grid/src/app/models/grid-options.ts",
"./projects/nebula/src/app/models/nebula-options.ts",
"./projects/superset/src/app/models/superset-options.ts",
"./projects/table/src/app/models/table-options.ts",
"./projects/datepicker/src/app/models/datepicker-options.ts",
"./projects/gauge/src/app/models/gauge-options.ts",
"./projects/menu/src/app/models/menu-options.ts",
"./projects/timepicker/src/app/models/timepicker-options.ts",
"./projects/ngx-charts/src/app/models/ngx-charts-options.ts",
"./projects/ngx-graph/src/app/models/ngx-graph-options.ts",
"./projects/pdf-viewer/src/app/models/pdf-viewer-options.ts",
"./projects/checkbox/src/app/models/checkbox-options.ts",
"./projects/slider/src/app/models/slider-options.ts",
"./projects/textarea-field/src/app/models/textarea-field-options.ts",
"./projects/radio-group/src/app/models/radio-group-options.ts",
"./projects/claviz-charts/src/app/models/claviz-charts-options.ts",
"./projects/file-uploader/src/app/models/file-uploader-options.ts",
"./projects/code-editor/src/app/models/code-editor-options.ts",
"./projects/calendar/src/app/models/calendar-options.ts",
"./projects/year-calendar/src/app/models/year-calendar-options.ts",
"./node_modules/claviz-charts/lib/models/container-chart-options.d.ts",
"./node_modules/@drayman/types/types/index.d.ts",
"./projects/shared/models/button-options.ts"
],
}