forked from searchkit/searchkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
executable file
·683 lines (683 loc) · 37.1 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
{
"compileOnSave": false,
"compilerOptions": {
"declaration": true,
"module": "commonjs",
"target": "es5",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"outDir": "lib",
"sourceMap": true,
"moduleResolution": "node",
"noEmitOnError": true,
"jsx": "react"
},
"files": [
"./src/__test__/core/react/FastClickSpec.tsx",
"./src/__test__/core/react/LoadingComponentSpec.tsx",
"./src/__test__/core/react/pure-render/PureRenderComponentSpec.tsx",
"./src/__test__/core/react/RenderComponentSpec.tsx",
"./src/__test__/core/react/SearchkitComponentSpec.tsx",
"./src/__test__/core/react/SearchkitProviderSpec.tsx",
"./src/components/display/view-switcher/ViewSwitcherHits.tsx",
"./src/components/display/view-switcher/ViewSwitcherHits.unit.tsx",
"./src/components/display/view-switcher/ViewSwitcherToggle.tsx",
"./src/components/search/filters/checkbox-filter/CheckboxFilter.tsx",
"./src/components/search/filters/checkbox-filter/CheckboxFilter.unit.tsx",
"./src/components/search/filters/dynamic-range-filter/DynamicRangeFilter.tsx",
"./src/components/search/filters/dynamic-range-filter/DynamicRangeFilter.unit.tsx",
"./src/components/search/filters/facet-filter/FacetFilter.tsx",
"./src/components/search/filters/facet-filter/FacetFilter.unit.tsx",
"./src/components/search/filters/facet-filter/MenuFilter.tsx",
"./src/components/search/filters/facet-filter/MenuFilter.unit.tsx",
"./src/components/search/filters/facet-filter/RefinementListFilter.tsx",
"./src/components/search/filters/hierarchical-menu-filter/src/HierarchicalMenuFilter.tsx",
"./src/components/search/filters/hierarchical-menu-filter/test/HierarchicalMenuFilterSpec.tsx",
"./src/components/search/filters/hierarchical-refinement-filter/src/HierarchicalRefinementFilter.tsx",
"./src/components/search/filters/hierarchical-refinement-filter/test/HierarchicalRefinementFilterSpec.tsx",
"./src/components/search/filters/input-filter/InputFilter.tsx",
"./src/components/search/filters/input-filter/InputFilter.unit.tsx",
"./src/components/search/filters/numeric-refinement-list-filter/src/NumericRefinementListFilter.tsx",
"./src/components/search/filters/numeric-refinement-list-filter/test/NumericRefinementListFilterSpec.tsx",
"./src/components/search/filters/range-filter/src/RangeFilter.tsx",
"./src/components/search/filters/range-filter/test/RangeFilterSpec.tsx",
"./src/components/search/filters/reset-filters/src/ResetFilters.tsx",
"./src/components/search/filters/reset-filters/test/ResetFiltersSpec.tsx",
"./src/components/search/filters/selected-filters/GroupedSelectedFilters.tsx",
"./src/components/search/filters/selected-filters/GroupedSelectedFilters.unit.tsx",
"./src/components/search/filters/selected-filters/SelectedFilters.tsx",
"./src/components/search/filters/selected-filters/SelectedFilters.unit.tsx",
"./src/components/search/filters/tag-filter/TagFilter.tsx",
"./src/components/search/filters/tag-filter/TagFilter.unit.tsx",
"./src/components/search/filters/tag-filter/TagFilterConfig.tsx",
"./src/components/search/filters/tag-filter/TagFilterList.tsx",
"./src/components/search/filters/tag-filter/TagFilterList.unit.tsx",
"./src/components/search/hits-stats/src/HitsStats.tsx",
"./src/components/search/hits-stats/test/HitsStatsSpec.tsx",
"./src/components/search/hits/src/Hits.tsx",
"./src/components/search/hits/src/InitialLoader.tsx",
"./src/components/search/hits/src/NoHits.tsx",
"./src/components/search/hits/src/NoHitsDisplay.tsx",
"./src/components/search/hits/src/NoHitsErrorDisplay.tsx",
"./src/components/search/hits/test/HitsSpec.tsx",
"./src/components/search/hits/test/InitialLoaderSpec.tsx",
"./src/components/search/hits/test/NoHitsSpec.tsx",
"./src/components/search/page-size-selector/PageSizeSelector.tsx",
"./src/components/search/page-size-selector/PageSizeSelector.unit.tsx",
"./src/components/search/pagination/src/Pagination.tsx",
"./src/components/search/pagination/test/PaginationSpec.tsx",
"./src/components/search/search-box/SearchBox.tsx",
"./src/components/search/search-box/Searchbox.unit.tsx",
"./src/components/search/sorting-selector/src/SortingSelector.tsx",
"./src/components/search/sorting-selector/test/SortSelectorSpec.tsx",
"./src/components/ui/filter-group/FilterGroup.tsx",
"./src/components/ui/filter-group/FilterGroup.unit.tsx",
"./src/components/ui/layout/Layout.tsx",
"./src/components/ui/layout/Layout.unit.tsx",
"./src/components/ui/layout/Panel.tsx",
"./src/components/ui/layout/Panel.unit.tsx",
"./src/components/ui/list/ItemComponents.tsx",
"./src/components/ui/list/ItemComponents.unit.tsx",
"./src/components/ui/list/ItemHistogramList.tsx",
"./src/components/ui/list/ItemHistogramList.unit.tsx",
"./src/components/ui/list/ItemListComponents.tsx",
"./src/components/ui/list/ItemListComponents.unit.tsx",
"./src/components/ui/list/MockList.tsx",
"./src/components/ui/list/Select.tsx",
"./src/components/ui/list/Select.unit.tsx",
"./src/components/ui/list/TagCloud.tsx",
"./src/components/ui/list/TagCloud.unit.tsx",
"./src/components/ui/range/MockRange.tsx",
"./src/components/ui/range/RangeComponents.tsx",
"./src/components/ui/range/RangeHistogram.tsx",
"./src/components/ui/range/RangeHistogram.unit.tsx",
"./src/components/ui/range/RangeInput.tsx",
"./src/components/ui/range/RangeInput.unit.tsx",
"./src/components/ui/range/RangeSlider.tsx",
"./src/components/ui/range/RangeSlider.unit.tsx",
"./src/core/react/LoadingComponent.tsx",
"./src/core/react/SearchkitProvider.tsx",
"./src/__test__/core/AccessorManagerSpec.ts",
"./src/__test__/core/accessors/AccessorSpec.ts",
"./src/__test__/core/accessors/AnonymousAccessorSpec.ts",
"./src/__test__/core/accessors/BaseQueryAccessorSpec.ts",
"./src/__test__/core/accessors/CheckboxFilterAccessorSpec.ts",
"./src/__test__/core/accessors/CustomHighlightAccessorSpec.ts",
"./src/__test__/core/accessors/DynamicRangeAccessorSpec.ts",
"./src/__test__/core/accessors/FacetAccessorSpec.ts",
"./src/__test__/core/accessors/HierarchicalFacetAccessorSpec.ts",
"./src/__test__/core/accessors/HighlightAccessorSpec.ts",
"./src/__test__/core/accessors/HitsAccessorSpec.ts",
"./src/__test__/core/accessors/NestedFacetAccessorSpec.ts",
"./src/__test__/core/accessors/NoFiltersHitCountAccessorSpec.ts",
"./src/__test__/core/accessors/NumericalOptionsAccessorSpec.ts",
"./src/__test__/core/accessors/PageSizeAccessorSpec.ts",
"./src/__test__/core/accessors/PaginationAccessorSpec.ts",
"./src/__test__/core/accessors/QueryAccessorSpec.ts",
"./src/__test__/core/accessors/RangeAccessorSpec.ts",
"./src/__test__/core/accessors/ResetSearchAccessorSpec.ts",
"./src/__test__/core/accessors/SortingAccessorSpec.ts",
"./src/__test__/core/accessors/SourceFilterAccessorSpec.ts",
"./src/__test__/core/accessors/StatefulAccessorSpec.ts",
"./src/__test__/core/accessors/SuggestionsAccessorSpec.ts",
"./src/__test__/core/accessors/ViewOptionsAccessorSpec.ts",
"./src/__test__/core/history/HistorySpec.ts",
"./src/__test__/core/query/field_context/ChildrenFieldContext.unit.ts",
"./src/__test__/core/query/field_context/EmbeddedFieldContext.unit.ts",
"./src/__test__/core/query/field_context/NestedFieldContext.unit.ts",
"./src/__test__/core/query/ImmutableQuerySpec.ts",
"./src/__test__/core/query/query_dsl/aggregations/AggsContainerSpec.ts",
"./src/__test__/core/query/query_dsl/aggregations/BucketAggregationsSpec.ts",
"./src/__test__/core/query/query_dsl/aggregations/MetricAggregationsSpec.ts",
"./src/__test__/core/query/query_dsl/aggregations/PipelineAggregationsSpec.ts",
"./src/__test__/core/query/query_dsl/compound/BoolQueriesSpec.ts",
"./src/__test__/core/query/query_dsl/compound/FilteredQuerySpec.ts",
"./src/__test__/core/query/query_dsl/full_text/MatchPhrasePrefixSpec.ts",
"./src/__test__/core/query/query_dsl/full_text/MatchQuerySpec.ts",
"./src/__test__/core/query/query_dsl/full_text/MultiMatchQuerySpec.ts",
"./src/__test__/core/query/query_dsl/full_text/QueryStringSpec.ts",
"./src/__test__/core/query/query_dsl/full_text/SimpleQueryStringSpec.ts",
"./src/__test__/core/query/query_dsl/joining/HasChildQuerySpec.ts",
"./src/__test__/core/query/query_dsl/joining/HasParentQuerySpec.ts",
"./src/__test__/core/query/query_dsl/joining/NestedQuerySpec.ts",
"./src/__test__/core/query/query_dsl/term_level/RangeQuerySpec.ts",
"./src/__test__/core/query/query_dsl/term_level/TermQuerySpec.ts",
"./src/__test__/core/query/query_dsl/term_level/TermsQuerySpec.ts",
"./src/__test__/core/react/pure-render/PureRenderSpec.ts",
"./src/__test__/core/react/pure-render/shallowEqualWithoutFunctionsSpec.ts",
"./src/__test__/core/SearchkitManagerSpec.ts",
"./src/__test__/core/SearchRequestSpec.ts",
"./src/__test__/core/state/ArrayStateSpec.ts",
"./src/__test__/core/state/LevelStateSpec.ts",
"./src/__test__/core/state/ObjectStateSpec.ts",
"./src/__test__/core/state/StateSpec.ts",
"./src/__test__/core/state/ValueStateSpec.ts",
"./src/__test__/core/support/EventEmitterSpec.ts",
"./src/__test__/core/support/UtilsSpec.ts",
"./src/__test__/core/transport/AxiosESTransportSpec.ts",
"./src/__test__/core/transport/MockESTransportSpec.ts",
"./src/components/__test__/TestHelpers.ts",
"./src/components/display/index.ts",
"./src/components/display/view-switcher/index.ts",
"./src/components/index.ts",
"./src/components/pageobjects.ts",
"./src/components/search/filters/facet-filter/FacetFilterProps.ts",
"./src/components/search/filters/facet-filter/index.ts",
"./src/components/search/filters/facet-filter/pageobjects.ts",
"./src/components/search/filters/hierarchical-refinement-filter/page-objects/HierarchicalRefinementFilter.ts",
"./src/components/search/filters/selected-filters/index.ts",
"./src/components/search/filters/tag-filter/index.ts",
"./src/components/search/hits-stats/page-objects/HitsStats.ts",
"./src/components/search/hits/page-objects/Hits.ts",
"./src/components/search/pagination/page-objects/Pagination.ts",
"./src/components/search/pagination/src/PaginationUtils.ts",
"./src/components/search/search-box/pageobjects.ts",
"./src/components/search/sorting-selector/page-objects/SortingSelector.ts",
"./src/components/ui/filter-group/index.ts",
"./src/components/ui/index.ts",
"./src/components/ui/layout/index.ts",
"./src/components/ui/list/index.ts",
"./src/components/ui/list/ListProps.ts",
"./src/components/ui/list/pageobjects.ts",
"./src/components/ui/range/index.ts",
"./src/components/ui/range/RangeProps.ts",
"./src/core/AccessorManager.ts",
"./src/core/accessors/Accessor.ts",
"./src/core/accessors/AnonymousAccessor.ts",
"./src/core/accessors/BaseQueryAccessor.ts",
"./src/core/accessors/CheckboxFilterAccessor.ts",
"./src/core/accessors/CustomHighlightAccessor.ts",
"./src/core/accessors/DynamicRangeAccessor.ts",
"./src/core/accessors/FacetAccessor.ts",
"./src/core/accessors/FilterBasedAccessor.ts",
"./src/core/accessors/HierarchicalFacetAccessor.ts",
"./src/core/accessors/HighlightAccessor.ts",
"./src/core/accessors/HitsAccessor.ts",
"./src/core/accessors/index.ts",
"./src/core/accessors/NestedFacetAccessor.ts",
"./src/core/accessors/NoFiltersHitCountAccessor.ts",
"./src/core/accessors/NumericOptionsAccessor.ts",
"./src/core/accessors/PageSizeAccessor.ts",
"./src/core/accessors/PaginationAccessor.ts",
"./src/core/accessors/QueryAccessor.ts",
"./src/core/accessors/RangeAccessor.ts",
"./src/core/accessors/ResetSearchAccessor.ts",
"./src/core/accessors/SortingAccessor.ts",
"./src/core/accessors/SourceFilterAccessor.ts",
"./src/core/accessors/StatefulAccessor.ts",
"./src/core/accessors/SuggestionsAccessor.ts",
"./src/core/accessors/ViewOptionsAccessor.ts",
"./src/core/history.ts",
"./src/core/index.ts",
"./src/core/query/field_context/ChildrenFieldContext.ts",
"./src/core/query/field_context/EmbeddedFieldContext.ts",
"./src/core/query/field_context/FieldContext.ts",
"./src/core/query/field_context/FieldContextFactory.ts",
"./src/core/query/field_context/FieldOptions.ts",
"./src/core/query/field_context/index.ts",
"./src/core/query/field_context/NestedFieldContext.ts",
"./src/core/query/ImmutableQuery.ts",
"./src/core/query/index.ts",
"./src/core/query/query_dsl/aggregations/AggsContainer.ts",
"./src/core/query/query_dsl/aggregations/BucketAggregations.ts",
"./src/core/query/query_dsl/aggregations/index.ts",
"./src/core/query/query_dsl/aggregations/MetricAggregations.ts",
"./src/core/query/query_dsl/aggregations/PipelineAggregations.ts",
"./src/core/query/query_dsl/compound/BoolQueries.ts",
"./src/core/query/query_dsl/compound/FilteredQuery.ts",
"./src/core/query/query_dsl/compound/index.ts",
"./src/core/query/query_dsl/full_text/index.ts",
"./src/core/query/query_dsl/full_text/MatchPhrasePrefix.ts",
"./src/core/query/query_dsl/full_text/MatchQuery.ts",
"./src/core/query/query_dsl/full_text/MultiMatchQuery.ts",
"./src/core/query/query_dsl/full_text/QueryString.ts",
"./src/core/query/query_dsl/full_text/SimpleQueryString.ts",
"./src/core/query/query_dsl/index.ts",
"./src/core/query/query_dsl/joining/HasChildQuery.ts",
"./src/core/query/query_dsl/joining/HasParentQuery.ts",
"./src/core/query/query_dsl/joining/index.ts",
"./src/core/query/query_dsl/joining/NestedQuery.ts",
"./src/core/query/query_dsl/term_level/index.ts",
"./src/core/query/query_dsl/term_level/RangeQuery.ts",
"./src/core/query/query_dsl/term_level/TermQuery.ts",
"./src/core/query/query_dsl/term_level/TermsQuery.ts",
"./src/core/query/SelectedFilter.ts",
"./src/core/react/block.ts",
"./src/core/react/FastClick.ts",
"./src/core/react/index.ts",
"./src/core/react/pure-render/index.ts",
"./src/core/react/pure-render/PureRender.ts",
"./src/core/react/pure-render/PureRenderComponent.ts",
"./src/core/react/pure-render/shallowEqualWithoutFunctions.ts",
"./src/core/react/pure-render/shouldPureComponentUpdate.ts",
"./src/core/react/ReactComponentType.ts",
"./src/core/react/RenderComponent.ts",
"./src/core/react/SearchkitComponent.ts",
"./src/core/SearchkitManager.ts",
"./src/core/SearchkitVersion.ts",
"./src/core/SearchRequest.ts",
"./src/core/state/ArrayState.ts",
"./src/core/state/index.ts",
"./src/core/state/LevelState.ts",
"./src/core/state/ObjectState.ts",
"./src/core/state/State.ts",
"./src/core/state/ValueState.ts",
"./src/core/support/EventEmitter.ts",
"./src/core/support/index.ts",
"./src/core/support/Newable.ts",
"./src/core/support/Utils.ts",
"./src/core/transport/AxiosESTransport.ts",
"./src/core/transport/ESTransport.ts",
"./src/core/transport/index.ts",
"./src/core/transport/MockESTransport.ts",
"./src/index.ts",
"./test/e2e/specs/MovieSpec.ts",
"./test/e2e/server/apps/children-app/index.tsx",
"./test/e2e/server/apps/list-app/index.tsx",
"./test/e2e/server/apps/movie-app/index.tsx",
"./test/e2e/server/apps/playground/index.tsx",
"./test/e2e/server/apps/playground/TogglePanel.tsx",
"./test/e2e/server/apps/range-app/index.tsx",
"./test/e2e/server/apps/readme-app/index.tsx",
"./test/e2e/server/apps/taxonomy-app/index.tsx",
"./test/e2e/server/apps/theme-app/index.tsx",
"./test/e2e/server/apps/ui-app/index.tsx",
"./test/e2e/server/apps/ui-app/MockList.tsx",
"./test/e2e/server/apps/ui-app/MockRange.tsx",
"./theming/index.ts",
"./node_modules/protractor/built/browser.d.ts",
"./node_modules/protractor/built/cli.d.ts",
"./node_modules/protractor/built/config.d.ts",
"./node_modules/protractor/built/configParser.d.ts",
"./node_modules/protractor/built/debugger.d.ts",
"./node_modules/protractor/built/driverProviders/attachSession.d.ts",
"./node_modules/protractor/built/driverProviders/browserStack.d.ts",
"./node_modules/protractor/built/driverProviders/direct.d.ts",
"./node_modules/protractor/built/driverProviders/driverProvider.d.ts",
"./node_modules/protractor/built/driverProviders/hosted.d.ts",
"./node_modules/protractor/built/driverProviders/index.d.ts",
"./node_modules/protractor/built/driverProviders/local.d.ts",
"./node_modules/protractor/built/driverProviders/mock.d.ts",
"./node_modules/protractor/built/driverProviders/sauce.d.ts",
"./node_modules/protractor/built/element.d.ts",
"./node_modules/protractor/built/exitCodes.d.ts",
"./node_modules/protractor/built/expectedConditions.d.ts",
"./node_modules/protractor/built/index.d.ts",
"./node_modules/protractor/built/launcher.d.ts",
"./node_modules/protractor/built/locators.d.ts",
"./node_modules/protractor/built/logger.d.ts",
"./node_modules/protractor/built/plugins.d.ts",
"./node_modules/protractor/built/ptor.d.ts",
"./node_modules/protractor/built/runner.d.ts",
"./node_modules/protractor/built/runnerCli.d.ts",
"./node_modules/protractor/built/taskLogger.d.ts",
"./node_modules/protractor/built/taskRunner.d.ts",
"./node_modules/protractor/built/taskScheduler.d.ts",
"./node_modules/protractor/built/util.d.ts",
"./node_modules/protractor/node_modules/@types/selenium-webdriver/chrome.d.ts",
"./node_modules/protractor/node_modules/@types/selenium-webdriver/edge.d.ts",
"./node_modules/protractor/node_modules/@types/selenium-webdriver/executors.d.ts",
"./node_modules/protractor/node_modules/@types/selenium-webdriver/firefox.d.ts",
"./node_modules/protractor/node_modules/@types/selenium-webdriver/http.d.ts",
"./node_modules/protractor/node_modules/@types/selenium-webdriver/ie.d.ts",
"./node_modules/protractor/node_modules/@types/selenium-webdriver/index.d.ts",
"./node_modules/protractor/node_modules/@types/selenium-webdriver/opera.d.ts",
"./node_modules/protractor/node_modules/@types/selenium-webdriver/remote.d.ts",
"./node_modules/protractor/node_modules/@types/selenium-webdriver/safari.d.ts",
"./node_modules/protractor/node_modules/@types/selenium-webdriver/testing.d.ts",
"./node_modules/axios/index.d.ts",
"./node_modules/@types/cheerio/index.d.ts",
"./node_modules/@types/classnames/index.d.ts",
"./node_modules/@types/enzyme/index.d.ts",
"./node_modules/@types/es6-promise/index.d.ts",
"./node_modules/@types/history/index.d.ts",
"./node_modules/@types/history/createBrowserHistory.d.ts",
"./node_modules/@types/history/createHashHistory.d.ts",
"./node_modules/@types/history/createMemoryHistory.d.ts",
"./node_modules/@types/jasmine-ajax/index.d.ts",
"./node_modules/@types/jasmine/index.d.ts",
"./node_modules/@types/lodash/add/index.d.ts",
"./node_modules/@types/lodash/after/index.d.ts",
"./node_modules/@types/lodash/ary/index.d.ts",
"./node_modules/@types/lodash/assign/index.d.ts",
"./node_modules/@types/lodash/assignIn/index.d.ts",
"./node_modules/@types/lodash/assignInWith/index.d.ts",
"./node_modules/@types/lodash/assignWith/index.d.ts",
"./node_modules/@types/lodash/at/index.d.ts",
"./node_modules/@types/lodash/attempt/index.d.ts",
"./node_modules/@types/lodash/before/index.d.ts",
"./node_modules/@types/lodash/bind/index.d.ts",
"./node_modules/@types/lodash/bindAll/index.d.ts",
"./node_modules/@types/lodash/bindKey/index.d.ts",
"./node_modules/@types/lodash/camelCase/index.d.ts",
"./node_modules/@types/lodash/capitalize/index.d.ts",
"./node_modules/@types/lodash/castArray/index.d.ts",
"./node_modules/@types/lodash/ceil/index.d.ts",
"./node_modules/@types/lodash/chain/index.d.ts",
"./node_modules/@types/lodash/chunk/index.d.ts",
"./node_modules/@types/lodash/clamp/index.d.ts",
"./node_modules/@types/lodash/clone/index.d.ts",
"./node_modules/@types/lodash/cloneDeep/index.d.ts",
"./node_modules/@types/lodash/cloneDeepWith/index.d.ts",
"./node_modules/@types/lodash/cloneWith/index.d.ts",
"./node_modules/@types/lodash/compact/index.d.ts",
"./node_modules/@types/lodash/concat/index.d.ts",
"./node_modules/@types/lodash/constant/index.d.ts",
"./node_modules/@types/lodash/countBy/index.d.ts",
"./node_modules/@types/lodash/create/index.d.ts",
"./node_modules/@types/lodash/curry/index.d.ts",
"./node_modules/@types/lodash/curryRight/index.d.ts",
"./node_modules/@types/lodash/debounce/index.d.ts",
"./node_modules/@types/lodash/deburr/index.d.ts",
"./node_modules/@types/lodash/defaults/index.d.ts",
"./node_modules/@types/lodash/defaultsDeep/index.d.ts",
"./node_modules/@types/lodash/defer/index.d.ts",
"./node_modules/@types/lodash/delay/index.d.ts",
"./node_modules/@types/lodash/difference/index.d.ts",
"./node_modules/@types/lodash/differenceBy/index.d.ts",
"./node_modules/@types/lodash/differenceWith/index.d.ts",
"./node_modules/@types/lodash/drop/index.d.ts",
"./node_modules/@types/lodash/dropRight/index.d.ts",
"./node_modules/@types/lodash/dropRightWhile/index.d.ts",
"./node_modules/@types/lodash/dropWhile/index.d.ts",
"./node_modules/@types/lodash/each/index.d.ts",
"./node_modules/@types/lodash/eachRight/index.d.ts",
"./node_modules/@types/lodash/endsWith/index.d.ts",
"./node_modules/@types/lodash/eq/index.d.ts",
"./node_modules/@types/lodash/escape/index.d.ts",
"./node_modules/@types/lodash/escapeRegExp/index.d.ts",
"./node_modules/@types/lodash/every/index.d.ts",
"./node_modules/@types/lodash/extend/index.d.ts",
"./node_modules/@types/lodash/extendWith/index.d.ts",
"./node_modules/@types/lodash/fb/index.d.ts",
"./node_modules/@types/lodash/fill/index.d.ts",
"./node_modules/@types/lodash/filter/index.d.ts",
"./node_modules/@types/lodash/find/index.d.ts",
"./node_modules/@types/lodash/findIndex/index.d.ts",
"./node_modules/@types/lodash/findKey/index.d.ts",
"./node_modules/@types/lodash/findLast/index.d.ts",
"./node_modules/@types/lodash/findLastIndex/index.d.ts",
"./node_modules/@types/lodash/findLastKey/index.d.ts",
"./node_modules/@types/lodash/first/index.d.ts",
"./node_modules/@types/lodash/flatMap/index.d.ts",
"./node_modules/@types/lodash/flatten/index.d.ts",
"./node_modules/@types/lodash/flattenDeep/index.d.ts",
"./node_modules/@types/lodash/flattenDepth/index.d.ts",
"./node_modules/@types/lodash/flip/index.d.ts",
"./node_modules/@types/lodash/floor/index.d.ts",
"./node_modules/@types/lodash/flow/index.d.ts",
"./node_modules/@types/lodash/flowRight/index.d.ts",
"./node_modules/@types/lodash/forEach/index.d.ts",
"./node_modules/@types/lodash/forEachRight/index.d.ts",
"./node_modules/@types/lodash/forIn/index.d.ts",
"./node_modules/@types/lodash/forInRight/index.d.ts",
"./node_modules/@types/lodash/forOwn/index.d.ts",
"./node_modules/@types/lodash/forOwnRight/index.d.ts",
"./node_modules/@types/lodash/fromPairs/index.d.ts",
"./node_modules/@types/lodash/functions/index.d.ts",
"./node_modules/@types/lodash/functionsIn/index.d.ts",
"./node_modules/@types/lodash/get/index.d.ts",
"./node_modules/@types/lodash/groupBy/index.d.ts",
"./node_modules/@types/lodash/gt/index.d.ts",
"./node_modules/@types/lodash/gte/index.d.ts",
"./node_modules/@types/lodash/has/index.d.ts",
"./node_modules/@types/lodash/hasIn/index.d.ts",
"./node_modules/@types/lodash/head/index.d.ts",
"./node_modules/@types/lodash/identity/index.d.ts",
"./node_modules/@types/lodash/includes/index.d.ts",
"./node_modules/@types/lodash/index.d.ts",
"./node_modules/@types/lodash/indexOf/index.d.ts",
"./node_modules/@types/lodash/initial/index.d.ts",
"./node_modules/@types/lodash/inRange/index.d.ts",
"./node_modules/@types/lodash/intersection/index.d.ts",
"./node_modules/@types/lodash/intersectionBy/index.d.ts",
"./node_modules/@types/lodash/intersectionWith/index.d.ts",
"./node_modules/@types/lodash/invert/index.d.ts",
"./node_modules/@types/lodash/invertBy/index.d.ts",
"./node_modules/@types/lodash/invoke/index.d.ts",
"./node_modules/@types/lodash/invokeMap/index.d.ts",
"./node_modules/@types/lodash/isArguments/index.d.ts",
"./node_modules/@types/lodash/isArray/index.d.ts",
"./node_modules/@types/lodash/isArrayBuffer/index.d.ts",
"./node_modules/@types/lodash/isArrayLike/index.d.ts",
"./node_modules/@types/lodash/isArrayLikeObject/index.d.ts",
"./node_modules/@types/lodash/isBoolean/index.d.ts",
"./node_modules/@types/lodash/isBuffer/index.d.ts",
"./node_modules/@types/lodash/isDate/index.d.ts",
"./node_modules/@types/lodash/isElement/index.d.ts",
"./node_modules/@types/lodash/isEmpty/index.d.ts",
"./node_modules/@types/lodash/isEqual/index.d.ts",
"./node_modules/@types/lodash/isEqualWith/index.d.ts",
"./node_modules/@types/lodash/isError/index.d.ts",
"./node_modules/@types/lodash/isFinite/index.d.ts",
"./node_modules/@types/lodash/isFunction/index.d.ts",
"./node_modules/@types/lodash/isInteger/index.d.ts",
"./node_modules/@types/lodash/isLength/index.d.ts",
"./node_modules/@types/lodash/isMap/index.d.ts",
"./node_modules/@types/lodash/isMatch/index.d.ts",
"./node_modules/@types/lodash/isMatchWith/index.d.ts",
"./node_modules/@types/lodash/isNaN/index.d.ts",
"./node_modules/@types/lodash/isNative/index.d.ts",
"./node_modules/@types/lodash/isNil/index.d.ts",
"./node_modules/@types/lodash/isNull/index.d.ts",
"./node_modules/@types/lodash/isNumber/index.d.ts",
"./node_modules/@types/lodash/isObject/index.d.ts",
"./node_modules/@types/lodash/isObjectLike/index.d.ts",
"./node_modules/@types/lodash/isPlainObject/index.d.ts",
"./node_modules/@types/lodash/isRegExp/index.d.ts",
"./node_modules/@types/lodash/isSafeInteger/index.d.ts",
"./node_modules/@types/lodash/isSet/index.d.ts",
"./node_modules/@types/lodash/isString/index.d.ts",
"./node_modules/@types/lodash/isSymbol/index.d.ts",
"./node_modules/@types/lodash/isTypedArray/index.d.ts",
"./node_modules/@types/lodash/isUndefined/index.d.ts",
"./node_modules/@types/lodash/isWeakMap/index.d.ts",
"./node_modules/@types/lodash/isWeakSet/index.d.ts",
"./node_modules/@types/lodash/iteratee/index.d.ts",
"./node_modules/@types/lodash/join/index.d.ts",
"./node_modules/@types/lodash/kebabCase/index.d.ts",
"./node_modules/@types/lodash/keyBy/index.d.ts",
"./node_modules/@types/lodash/keys/index.d.ts",
"./node_modules/@types/lodash/keysIn/index.d.ts",
"./node_modules/@types/lodash/last/index.d.ts",
"./node_modules/@types/lodash/lastIndexOf/index.d.ts",
"./node_modules/@types/lodash/lowerCase/index.d.ts",
"./node_modules/@types/lodash/lowerFirst/index.d.ts",
"./node_modules/@types/lodash/lt/index.d.ts",
"./node_modules/@types/lodash/lte/index.d.ts",
"./node_modules/@types/lodash/map/index.d.ts",
"./node_modules/@types/lodash/mapKeys/index.d.ts",
"./node_modules/@types/lodash/mapValues/index.d.ts",
"./node_modules/@types/lodash/matches/index.d.ts",
"./node_modules/@types/lodash/matchesProperty/index.d.ts",
"./node_modules/@types/lodash/max/index.d.ts",
"./node_modules/@types/lodash/maxBy/index.d.ts",
"./node_modules/@types/lodash/mean/index.d.ts",
"./node_modules/@types/lodash/meanBy/index.d.ts",
"./node_modules/@types/lodash/memoize/index.d.ts",
"./node_modules/@types/lodash/merge/index.d.ts",
"./node_modules/@types/lodash/mergeWith/index.d.ts",
"./node_modules/@types/lodash/method/index.d.ts",
"./node_modules/@types/lodash/methodOf/index.d.ts",
"./node_modules/@types/lodash/min/index.d.ts",
"./node_modules/@types/lodash/minBy/index.d.ts",
"./node_modules/@types/lodash/mixin/index.d.ts",
"./node_modules/@types/lodash/negate/index.d.ts",
"./node_modules/@types/lodash/noConflict/index.d.ts",
"./node_modules/@types/lodash/noop/index.d.ts",
"./node_modules/@types/lodash/now/index.d.ts",
"./node_modules/@types/lodash/nthArg/index.d.ts",
"./node_modules/@types/lodash/omit/index.d.ts",
"./node_modules/@types/lodash/omitBy/index.d.ts",
"./node_modules/@types/lodash/once/index.d.ts",
"./node_modules/@types/lodash/orderBy/index.d.ts",
"./node_modules/@types/lodash/over/index.d.ts",
"./node_modules/@types/lodash/overArgs/index.d.ts",
"./node_modules/@types/lodash/overEvery/index.d.ts",
"./node_modules/@types/lodash/overSome/index.d.ts",
"./node_modules/@types/lodash/pad/index.d.ts",
"./node_modules/@types/lodash/padEnd/index.d.ts",
"./node_modules/@types/lodash/padStart/index.d.ts",
"./node_modules/@types/lodash/parseInt/index.d.ts",
"./node_modules/@types/lodash/partial/index.d.ts",
"./node_modules/@types/lodash/partialRight/index.d.ts",
"./node_modules/@types/lodash/partition/index.d.ts",
"./node_modules/@types/lodash/pick/index.d.ts",
"./node_modules/@types/lodash/pickBy/index.d.ts",
"./node_modules/@types/lodash/property/index.d.ts",
"./node_modules/@types/lodash/propertyOf/index.d.ts",
"./node_modules/@types/lodash/pull/index.d.ts",
"./node_modules/@types/lodash/pullAll/index.d.ts",
"./node_modules/@types/lodash/pullAllBy/index.d.ts",
"./node_modules/@types/lodash/pullAt/index.d.ts",
"./node_modules/@types/lodash/random/index.d.ts",
"./node_modules/@types/lodash/range/index.d.ts",
"./node_modules/@types/lodash/rangeRight/index.d.ts",
"./node_modules/@types/lodash/rearg/index.d.ts",
"./node_modules/@types/lodash/reduce/index.d.ts",
"./node_modules/@types/lodash/reduceRight/index.d.ts",
"./node_modules/@types/lodash/reject/index.d.ts",
"./node_modules/@types/lodash/remove/index.d.ts",
"./node_modules/@types/lodash/repeat/index.d.ts",
"./node_modules/@types/lodash/replace/index.d.ts",
"./node_modules/@types/lodash/rest/index.d.ts",
"./node_modules/@types/lodash/result/index.d.ts",
"./node_modules/@types/lodash/reverse/index.d.ts",
"./node_modules/@types/lodash/round/index.d.ts",
"./node_modules/@types/lodash/runInContext/index.d.ts",
"./node_modules/@types/lodash/sample/index.d.ts",
"./node_modules/@types/lodash/sampleSize/index.d.ts",
"./node_modules/@types/lodash/set/index.d.ts",
"./node_modules/@types/lodash/setWith/index.d.ts",
"./node_modules/@types/lodash/shuffle/index.d.ts",
"./node_modules/@types/lodash/size/index.d.ts",
"./node_modules/@types/lodash/slice/index.d.ts",
"./node_modules/@types/lodash/snakeCase/index.d.ts",
"./node_modules/@types/lodash/some/index.d.ts",
"./node_modules/@types/lodash/sortBy/index.d.ts",
"./node_modules/@types/lodash/sortedIndex/index.d.ts",
"./node_modules/@types/lodash/sortedIndexBy/index.d.ts",
"./node_modules/@types/lodash/sortedIndexOf/index.d.ts",
"./node_modules/@types/lodash/sortedLastIndex/index.d.ts",
"./node_modules/@types/lodash/sortedLastIndexBy/index.d.ts",
"./node_modules/@types/lodash/sortedLastIndexOf/index.d.ts",
"./node_modules/@types/lodash/sortedUniq/index.d.ts",
"./node_modules/@types/lodash/sortedUniqBy/index.d.ts",
"./node_modules/@types/lodash/split/index.d.ts",
"./node_modules/@types/lodash/spread/index.d.ts",
"./node_modules/@types/lodash/startCase/index.d.ts",
"./node_modules/@types/lodash/startsWith/index.d.ts",
"./node_modules/@types/lodash/subtract/index.d.ts",
"./node_modules/@types/lodash/sum/index.d.ts",
"./node_modules/@types/lodash/sumBy/index.d.ts",
"./node_modules/@types/lodash/tail/index.d.ts",
"./node_modules/@types/lodash/take/index.d.ts",
"./node_modules/@types/lodash/takeRight/index.d.ts",
"./node_modules/@types/lodash/takeRightWhile/index.d.ts",
"./node_modules/@types/lodash/takeWhile/index.d.ts",
"./node_modules/@types/lodash/tap/index.d.ts",
"./node_modules/@types/lodash/template/index.d.ts",
"./node_modules/@types/lodash/throttle/index.d.ts",
"./node_modules/@types/lodash/thru/index.d.ts",
"./node_modules/@types/lodash/times/index.d.ts",
"./node_modules/@types/lodash/toArray/index.d.ts",
"./node_modules/@types/lodash/toInteger/index.d.ts",
"./node_modules/@types/lodash/toLength/index.d.ts",
"./node_modules/@types/lodash/toLower/index.d.ts",
"./node_modules/@types/lodash/toNumber/index.d.ts",
"./node_modules/@types/lodash/toPairs/index.d.ts",
"./node_modules/@types/lodash/toPairsIn/index.d.ts",
"./node_modules/@types/lodash/toPath/index.d.ts",
"./node_modules/@types/lodash/toPlainObject/index.d.ts",
"./node_modules/@types/lodash/toSafeInteger/index.d.ts",
"./node_modules/@types/lodash/toString/index.d.ts",
"./node_modules/@types/lodash/toUpper/index.d.ts",
"./node_modules/@types/lodash/transform/index.d.ts",
"./node_modules/@types/lodash/trim/index.d.ts",
"./node_modules/@types/lodash/trimEnd/index.d.ts",
"./node_modules/@types/lodash/trimStart/index.d.ts",
"./node_modules/@types/lodash/truncate/index.d.ts",
"./node_modules/@types/lodash/unary/index.d.ts",
"./node_modules/@types/lodash/unescape/index.d.ts",
"./node_modules/@types/lodash/union/index.d.ts",
"./node_modules/@types/lodash/unionBy/index.d.ts",
"./node_modules/@types/lodash/unionWith/index.d.ts",
"./node_modules/@types/lodash/uniq/index.d.ts",
"./node_modules/@types/lodash/uniqBy/index.d.ts",
"./node_modules/@types/lodash/uniqueId/index.d.ts",
"./node_modules/@types/lodash/uniqWith/index.d.ts",
"./node_modules/@types/lodash/unset/index.d.ts",
"./node_modules/@types/lodash/unzip/index.d.ts",
"./node_modules/@types/lodash/unzipWith/index.d.ts",
"./node_modules/@types/lodash/update/index.d.ts",
"./node_modules/@types/lodash/upperCase/index.d.ts",
"./node_modules/@types/lodash/upperFirst/index.d.ts",
"./node_modules/@types/lodash/values/index.d.ts",
"./node_modules/@types/lodash/valuesIn/index.d.ts",
"./node_modules/@types/lodash/without/index.d.ts",
"./node_modules/@types/lodash/words/index.d.ts",
"./node_modules/@types/lodash/wrap/index.d.ts",
"./node_modules/@types/lodash/xor/index.d.ts",
"./node_modules/@types/lodash/xorBy/index.d.ts",
"./node_modules/@types/lodash/xorWith/index.d.ts",
"./node_modules/@types/lodash/zip/index.d.ts",
"./node_modules/@types/lodash/zipObject/index.d.ts",
"./node_modules/@types/lodash/zipWith/index.d.ts",
"./node_modules/@types/node/index.d.ts",
"./node_modules/@types/q/index.d.ts",
"./node_modules/@types/react-addons-create-fragment/index.d.ts",
"./node_modules/@types/react-dom/index.d.ts",
"./node_modules/@types/react-dom/server.d.ts",
"./node_modules/@types/react-router/index.d.ts",
"./node_modules/@types/react-router/lib/applyRouterMiddleware.d.ts",
"./node_modules/@types/react-router/lib/browserHistory.d.ts",
"./node_modules/@types/react-router/lib/createMemoryHistory.d.ts",
"./node_modules/@types/react-router/lib/hashHistory.d.ts",
"./node_modules/@types/react-router/lib/IndexLink.d.ts",
"./node_modules/@types/react-router/lib/IndexRedirect.d.ts",
"./node_modules/@types/react-router/lib/IndexRoute.d.ts",
"./node_modules/@types/react-router/lib/Lifecycle.d.ts",
"./node_modules/@types/react-router/lib/Link.d.ts",
"./node_modules/@types/react-router/lib/match.d.ts",
"./node_modules/@types/react-router/lib/PatternUtils.d.ts",
"./node_modules/@types/react-router/lib/PropTypes.d.ts",
"./node_modules/@types/react-router/lib/Redirect.d.ts",
"./node_modules/@types/react-router/lib/Route.d.ts",
"./node_modules/@types/react-router/lib/RouteContext.d.ts",
"./node_modules/@types/react-router/lib/Router.d.ts",
"./node_modules/@types/react-router/lib/RouterContext.d.ts",
"./node_modules/@types/react-router/lib/routerHistory.d.ts",
"./node_modules/@types/react-router/lib/RouteUtils.d.ts",
"./node_modules/@types/react-router/lib/useRouterHistory.d.ts",
"./node_modules/@types/react-router/lib/useRoutes.d.ts",
"./node_modules/@types/react-router/lib/withRouter.d.ts",
"./node_modules/@types/react/index.d.ts",
"./node_modules/@types/selenium-webdriver/chrome.d.ts",
"./node_modules/@types/selenium-webdriver/edge.d.ts",
"./node_modules/@types/selenium-webdriver/executors.d.ts",
"./node_modules/@types/selenium-webdriver/firefox.d.ts",
"./node_modules/@types/selenium-webdriver/http.d.ts",
"./node_modules/@types/selenium-webdriver/ie.d.ts",
"./node_modules/@types/selenium-webdriver/index.d.ts",
"./node_modules/@types/selenium-webdriver/opera.d.ts",
"./node_modules/@types/selenium-webdriver/remote.d.ts",
"./node_modules/@types/selenium-webdriver/safari.d.ts",
"./node_modules/@types/selenium-webdriver/testing.d.ts",
"./node_modules/@types/sinon/index.d.ts",
"./node_modules/@types/source-map/index.d.ts"
],
"filesGlob": [
"./src/**/*.tsx",
"./src/**/*.ts",
"./test/e2e/**/*.ts",
"./test/e2e/**/*.tsx",
"./theming/*.ts",
"./node_modules/protractor/**/*.d.ts",
"./node_modules/axios/**/*.d.ts",
"./node_modules/@types/**/*.d.ts"
],
"exclude": [],
"atom": {
"rewriteTsconfig": true
}
}