-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.log32156
1224 lines (1216 loc) · 264 KB
/
.log32156
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
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Info 0 response:
{"seq":0,"type":"response","command":"getSupportedCodeFixes","request_seq":0,"success":true,"body":["2352","1375","1431","2345","2322","2678","2356","2362","2363","2736","2365","2367","2801","2461","2495","2802","2549","2548","2488","2504","2339","2349","2351","2304","18004","2612","1329","7051","2412","2375","2379","80004","80002","80006","80001","2713","1205","1371","2690","2420","2720","2552","2663","2662","2503","2686","2693","1361","2719","2530","2603","2344","4113","4112","4116","4114","4115","4119","4121","4120","4122","4111","2683","2459","5086","5087","2551","2568","2570","2833","2724","4117","4123","2769","2355","2741","2739","2740","2348","2307","7016","2515","2653","17009","2377","1219","17004","2845","1378","1432","1312","2689","1451","1382","1381","8024","1272","6133","6196","6138","6192","6198","6199","6205","7027","7028","8020","2774","1308","1103","2311","2610","2611","7034","7005","7006","7019","7033","7010","7032","7008","7046","7043","7044","7047","7048","7050","7049","7045","1064","1002","1003","1005","1006","1007","1009","1010","1011","1012","1013","1014","1015","1016","1017","1018","1019","1020","1021","1022","1024","1025","1028","1029","1030","1031","1034","1035","1036","1038","1039","1040","1042","1044","1046","1047","1048","1049","1051","1052","1053","1054","1055","1056","1058","1059","1060","1061","1062","1063","1066","1068","1069","1070","1071","1079","1084","1085","1089","1090","1091","1092","1093","1094","1095","1096","1097","1098","1099","1100","1101","1102","1104","1105","1106","1107","1108","1109","1110","1113","1114","1115","1116","1117","1118","1119","1120","1121","1123","1124","1125","1126","1127","1128","1129","1130","1131","1132","1134","1135","1136","1137","1138","1139","1140","1141","1142","1144","1145","1146","1147","1148","1149","1155","1156","1157","1160","1161","1162","1163","1164","1165","1166","1168","1169","1170","1171","1172","1173","1174","1175","1176","1177","1178","1179","1180","1181","1182","1183","1184","1185","1186","1187","1188","1189","1190","1191","1192","1193","1194","1195","1196","1197","1198","1199","1200","1202","1203","1206","1207","1208","1209","1210","1211","1212","1213","1214","1215","1216","1218","1221","1222","1223","1224","1225","1226","1227","1228","1229","1230","1231","1232","1233","1234","1235","1236","1237","1238","1239","1240","1241","1242","1243","1244","1245","1246","1247","1248","1249","1250","1251","1252","1254","1255","1257","1258","1259","1260","1261","1262","1263","1264","1265","1266","1267","1268","1269","1270","1271","1273","1274","1275","1276","1300","1309","1313","1314","1315","1316","1317","1318","1319","1320","1321","1322","1323","1324","1325","1326","1327","1328","1330","1331","1332","1333","1334","1335","1337","1338","1339","1340","1341","1342","1343","1344","1345","1346","1347","1348","1349","1351","1352","1353","1354","1355","1356","1357","1358","1359","1360","1362","1363","1368","1379","1380","1383","1385","1386","1387","1388","1389","1390","1392","1433","1434","1435","1436","1437","1438","1439","1440","1441","1442","1443","1444","1446","1448","1452","1453","1454","1455","1456","1470","1471","1472","1473","1474","1477","1478","1479","2200","2201","2202","2203","2204","2205","2206","2207","2208","2209","2210","2300","2301","2302","2303","2305","2306","2308","2309","2310","2312","2313","2314","2315","2316","2317","2318","2319","2320","2321","2323","2324","2325","2326","2327","2328","2329","2330","2331","2332","2333","2334","2335","2336","2337","2338","2340","2341","2343","2346","2347","2350","2353","2354","2357","2358","2359","2364","2366","2368","2369","2370","2371","2372","2373","2374","2376","2378","2380","2383","2384","2385","2386","2387","2388","2389","2390","2391","2392","2393","2394","2395","2396","2397","2398","2399","2400","2401","2402","2403","2404","2405","2406","2407","2408","2409","2410","2411","2413","2414","2415","2416","2417","2418","2419","2422","2423","2425","2426","2427","2428","2430","2431","2432","2433","2434","2435","2436","2437","2438","2439","2440","2441","2442","2443","2444","2445","2446","2447","2448","2449","2450","2451","2452","2454","2456","2457","2458","2460","2462","2463","2464","2465","2466","2467","2468","2469","2472","2473","2474","2475","2476","2477","2478","2480","2481","2483","2484","2487","2489","2490","2491","2492","2493","2494","2496","2497","2498","2499","2500","2501","2502","2505","2506","2507","2508","2509","2510","2511","2512","2513","2514","2516","2517","2518","2519","2520","2522","2523","2524","2525","2526","2527","2528","2529","2531","2532","2533","2534","2535","2536","2537","2538","2539","2540","2542","2543","2544","2545","2547","2550","2553","2554","2555","2556","2558","2559","2560","2561","2562","2563","2564","2565","2566","2567","2571","2574","2575","2576","2577","2578","2580","2581","2582","2583","2584","2585","2588","2589","2590","2591","2592","2593","2594","2595","2596","2597","2598","2602","2604","2606","2607","2608","2609","2613","2614","2615","2616","2617","2618","2619","2620","2621","2623","2624","2625","2626","2627","2628","2629","2630","2631","2632","2633","2634","2635","2636","2637","2638","2649","2651","2652","2657","2658","2659","2660","2661","2664","2665","2666","2667","2668","2669","2670","2671","2672","2673","2674","2675","2676","2677","2679","2680","2681","2684","2685","2687","2688","2691","2692","2694","2695","2696","2697","2698","2699","2700","2701","2702","2703","2704","2705","2706","2707","2708","2709","2710","2711","2712","2714","2715","2716","2717","2718","2721","2722","2723","2725","2726","2727","2729","2730","2731","2732","2733","2734","2735","2737","2742","2743","2744","2745","2746","2747","2748","2749","2750","2751","2752","2753","2754","2755","2756","2757","2758","2759","2760","2761","2762","2763","2764","2765","2766","2767","2768","2770","2771","2772","2773","2775","2776","2777","2778","2779","2780","2781","2783","2784","2785","2786","2787","2788","2789","2790","2791","2792","2793","2794","2795","2796","2797","2798","2799","2800","2803","2804","2806","2807","2808","2809","2810","2811","2812","2813","2814","2815","2816","2817","2818","2819","2820","2821","2822","2834","2835","2836","2837","2838","2839","2840","2841","2842","2843","2844","4000","4002","4004","4006","4008","4010","4012","4014","4016","4019","4020","4021","4022","4023","4024","4025","4026","4027","4028","4029","4030","4031","4032","4033","4034","4035","4036","4037","4038","4039","4040","4041","4042","4043","4044","4045","4046","4047","4048","4049","4050","4051","4052","4053","4054","4055","4056","4057","4058","4059","4060","4061","4062","4063","4064","4065","4066","4067","4068","4069","4070","4071","4072","4073","4074","4075","4076","4077","4078","4081","4082","4083","4084","4090","4091","4092","4094","4095","4096","4097","4098","4099","4100","4101","4102","4103","4104","4105","4106","4107","4108","4109","4110","4118","4124","4125","5001","5009","5010","5012","5014","5023","5024","5025","5033","5042","5047","5048","5051","5052","5053","5054","5055","5056","5057","5058","5059","5061","5062","5063","5064","5065","5066","5067","5068","5069","5070","5071","5072","5073","5074","5075","5076","5077","5078","5079","5080","5081","5082","5083","5084","5085","5088","5089","5090","5091","5092","5093","5094","5095","6044","6045","6046","6048","6050","6051","6053","6054","6059","6064","6082","6114","6131","6137","6140","6142","6188","6189","6200","6202","6229","6230","6231","6232","6233","6234","6236","6238","6258","6304","6305","6306","6307","6308","6309","6310","6369","6370","6377","6379","6504","6931","7009","7011","7013","7014","7015","7017","7018","7020","7022","7023","7024","7025","7026","7029","7030","7031","7035","7036","7039","7040","7041","7042","7052","7053","7054","7055","7056","7057","7058","7059","7060","7061","8000","8001","8002","8003","8004","8005","8006","8008","8009","8010","8011","8012","8013","8016","8017","8018","8021","8022","8023","8025","8026","8027","8028","8029","8030","8031","8032","8033","8034","8035","8036","8037","9005","9006","17000","17001","17002","17005","17006","17007","17008","17010","17011","17012","17013","17014","17015","17016","17017","17018","18000","18002","18003","18006","18007","18009","18010","18011","18012","18013","18014","18015","18016","18017","18018","18019","18024","18026","18027","18028","18029","18030","18031","18032","18033","18035","18036","18037","18038","18039","18041","18042","18043","18045","18046","18047","18048","18049","18050","80005","80003","80008","80007"]}
Info 1 Search path: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories
Info 2 For info: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/enumeration.ts :: Config file name: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json
Info 3 Creating configuration project /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json
Info 4 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json 2000 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Config file
Info 5 event:
{"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json","reason":"Creating possible configured project for /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/enumeration.ts to open"}}
Info 6 Config: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json : {
"rootNames": [
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/index.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/constants/json-schema-type.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/constants/json-string-format.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/all-of.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/any-of.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/any.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/array.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/boolean.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/date-time.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/date.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/email.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/enumeration.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/integer.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/list.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/number.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/object.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/one-of.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/string.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/tuple.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/uuid.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/array-json-schema.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/boolean-json-schema.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/common-options.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/integer-json-schema.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/json-schema.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/number-json-schema.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/object-json-schema.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/options.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/string-json-schema.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/clone-with.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/clone.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/is-json-schema-like.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/merge-with.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/omit-properties.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/pick-properties.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/require-properties.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/to-string-reg-exp.ts"
],
"options": {
"module": 1,
"target": 2,
"moduleResolution": 2,
"noEmit": true,
"strict": true,
"strictNullChecks": true,
"alwaysStrict": true,
"pretty": true,
"declaration": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"suppressImplicitAnyIndexErrors": true,
"inlineSourceMap": true,
"outDir": "/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/dist",
"lib": [
"lib.es2017.d.ts"
],
"types": [
"node",
"mocha",
"chai"
],
"removeComments": true,
"configFilePath": "/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json"
}
}
Info 7 DirectoryWatcher:: Added:: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/src 1 undefined Config: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Wild card directory
Info 8 Elapsed:: 0.5916247367858887ms DirectoryWatcher:: Added:: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/src 1 undefined Config: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Wild card directory
Info 9 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/index.ts 500 undefined WatchType: Closed Script info
Info 10 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/constants/json-schema-type.ts 500 undefined WatchType: Closed Script info
Info 11 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/constants/json-string-format.ts 500 undefined WatchType: Closed Script info
Info 12 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/all-of.ts 500 undefined WatchType: Closed Script info
Info 13 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/any-of.ts 500 undefined WatchType: Closed Script info
Info 14 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/any.ts 500 undefined WatchType: Closed Script info
Info 15 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/array.ts 500 undefined WatchType: Closed Script info
Info 16 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/boolean.ts 500 undefined WatchType: Closed Script info
Info 17 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/date-time.ts 500 undefined WatchType: Closed Script info
Info 18 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/date.ts 500 undefined WatchType: Closed Script info
Info 19 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/email.ts 500 undefined WatchType: Closed Script info
Info 20 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/integer.ts 500 undefined WatchType: Closed Script info
Info 21 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/list.ts 500 undefined WatchType: Closed Script info
Info 22 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/number.ts 500 undefined WatchType: Closed Script info
Info 23 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/object.ts 500 undefined WatchType: Closed Script info
Info 24 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/one-of.ts 500 undefined WatchType: Closed Script info
Info 25 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/string.ts 500 undefined WatchType: Closed Script info
Info 26 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/tuple.ts 500 undefined WatchType: Closed Script info
Info 27 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/uuid.ts 500 undefined WatchType: Closed Script info
Info 28 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/array-json-schema.ts 500 undefined WatchType: Closed Script info
Info 29 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/boolean-json-schema.ts 500 undefined WatchType: Closed Script info
Info 30 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/common-options.ts 500 undefined WatchType: Closed Script info
Info 31 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/integer-json-schema.ts 500 undefined WatchType: Closed Script info
Info 32 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/json-schema.ts 500 undefined WatchType: Closed Script info
Info 33 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/number-json-schema.ts 500 undefined WatchType: Closed Script info
Info 34 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/object-json-schema.ts 500 undefined WatchType: Closed Script info
Info 35 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/options.ts 500 undefined WatchType: Closed Script info
Info 36 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/string-json-schema.ts 500 undefined WatchType: Closed Script info
Info 37 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/clone-with.ts 500 undefined WatchType: Closed Script info
Info 38 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/clone.ts 500 undefined WatchType: Closed Script info
Info 39 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/is-json-schema-like.ts 500 undefined WatchType: Closed Script info
Info 40 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/merge-with.ts 500 undefined WatchType: Closed Script info
Info 41 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/omit-properties.ts 500 undefined WatchType: Closed Script info
Info 42 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/pick-properties.ts 500 undefined WatchType: Closed Script info
Info 43 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/require-properties.ts 500 undefined WatchType: Closed Script info
Info 44 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/to-string-reg-exp.ts 500 undefined WatchType: Closed Script info
Info 45 Starting updateGraphWorker: Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json
Info 46 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/make-schema.ts 500 undefined WatchType: Closed Script info
Info 47 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/clean-options.ts 500 undefined WatchType: Closed Script info
Info 48 DirectoryWatcher:: Added:: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 49 Elapsed:: 0.0996251106262207ms DirectoryWatcher:: Added:: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 50 DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 51 Elapsed:: 0.009541988372802734ms DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 52 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/lodash/package.json 2000 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: File location affecting resolution
Info 53 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/nullable.ts 500 undefined WatchType: Closed Script info
Info 54 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@bluejay/utils/package.json 2000 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: File location affecting resolution
Info 55 DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 56 Elapsed:: 0.019374847412109375ms DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 57 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/lodash/package.json 2000 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: File location affecting resolution
Info 58 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/package.json 2000 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: File location affecting resolution
Info 59 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/mocha/package.json 2000 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: File location affecting resolution
Info 60 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/chai/package.json 2000 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: File location affecting resolution
Info 61 Finishing updateGraphWorker: Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed: 305.7849998474121ms
Info 62 Project '/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json' (Configured)
Info 63 Files (138)
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es5.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2015.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2016.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2017.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2018.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2015.core.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2015.collection.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2015.generator.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2015.iterable.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2015.promise.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2015.proxy.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2015.reflect.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2015.symbol.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2016.array.include.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2017.object.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2017.string.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2017.intl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2018.intl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2018.promise.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2018.regexp.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2020.bigint.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.es2020.intl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/typescript/lib/lib.esnext.intl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/constants/json-schema-type.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/constants/json-string-format.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/json-schema.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/any.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/array-json-schema.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/common-options.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/options.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/lodash/common/common.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/lodash/common/array.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/lodash/common/collection.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/lodash/common/date.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/lodash/common/function.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/lodash/common/lang.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/lodash/common/math.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/lodash/common/number.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/lodash/common/object.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/lodash/common/seq.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/lodash/common/string.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/lodash/common/util.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/lodash/index.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/clean-options.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@bluejay/utils/dist/constants/noop.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@bluejay/utils/dist/types/constructible.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@bluejay/utils/dist/types/deep-partial.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@bluejay/utils/dist/types/diff.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@bluejay/utils/dist/utils/make-array.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@bluejay/utils/dist/utils/pick.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@bluejay/utils/dist/utils/pluck.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@bluejay/utils/dist/utils/omit.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@bluejay/utils/dist/utils/wait.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@bluejay/utils/dist/utils/enum-values.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@bluejay/utils/dist/index.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/clone.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/clone-with.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/nullable.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/make-schema.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/array.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/boolean-json-schema.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/boolean.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/string-json-schema.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/string.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/date.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/date-time.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/email.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/number-json-schema.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/enumeration.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/integer-json-schema.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/integer.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/list.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/number.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/types/object-json-schema.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/object.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/tuple.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/to-string-reg-exp.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/uuid.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/any-of.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/one-of.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/all-of.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/merge-with.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/omit-properties.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/pick-properties.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/require-properties.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/utils/is-json-schema-like.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/index.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/globals.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/assert.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/async_hooks.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/buffer.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/child_process.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/cluster.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/console.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/constants.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/crypto.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/dgram.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/dns.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/domain.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/events.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/fs.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/http.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/http2.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/https.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/inspector.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/module.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/net.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/os.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/path.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/perf_hooks.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/process.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/punycode.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/querystring.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/readline.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/repl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/stream.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/string_decoder.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/timers.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/tls.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/trace_events.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/tty.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/url.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/util.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/v8.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/vm.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/worker_threads.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/zlib.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/base.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/ts3.2/util.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/ts3.2/globals.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/node/ts3.2/index.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/mocha/index.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/@types/chai/index.d.ts
node_modules/typescript/lib/lib.es5.d.ts
Library referenced via 'es5' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es5' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
node_modules/typescript/lib/lib.es2015.d.ts
Library referenced via 'es2015' from file 'node_modules/typescript/lib/lib.es2016.d.ts'
Library referenced via 'es2015' from file 'node_modules/typescript/lib/lib.es2016.d.ts'
node_modules/typescript/lib/lib.es2016.d.ts
Library referenced via 'es2016' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
Library referenced via 'es2016' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
node_modules/typescript/lib/lib.es2017.d.ts
Library referenced via 'es2017' from file 'node_modules/typescript/lib/lib.es2018.d.ts'
Library 'lib.es2017.d.ts' specified in compilerOptions
node_modules/typescript/lib/lib.es2018.d.ts
Library referenced via 'es2018' from file 'node_modules/@types/node/ts3.2/index.d.ts'
node_modules/typescript/lib/lib.es2015.core.d.ts
Library referenced via 'es2015.core' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.core' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
node_modules/typescript/lib/lib.es2015.collection.d.ts
Library referenced via 'es2015.collection' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.collection' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
node_modules/typescript/lib/lib.es2015.generator.d.ts
Library referenced via 'es2015.generator' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.generator' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
node_modules/typescript/lib/lib.es2015.iterable.d.ts
Library referenced via 'es2015.iterable' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.iterable' from file 'node_modules/typescript/lib/lib.es2015.generator.d.ts'
Library referenced via 'es2015.iterable' from file 'node_modules/typescript/lib/lib.es2018.asynciterable.d.ts'
Library referenced via 'es2015.iterable' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.iterable' from file 'node_modules/typescript/lib/lib.es2015.generator.d.ts'
node_modules/typescript/lib/lib.es2015.promise.d.ts
Library referenced via 'es2015.promise' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.promise' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
node_modules/typescript/lib/lib.es2015.proxy.d.ts
Library referenced via 'es2015.proxy' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.proxy' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
node_modules/typescript/lib/lib.es2015.reflect.d.ts
Library referenced via 'es2015.reflect' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.reflect' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
node_modules/typescript/lib/lib.es2015.symbol.d.ts
Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2015.iterable.d.ts'
Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts'
Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts'
Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2018.asynciterable.d.ts'
Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2015.iterable.d.ts'
Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts'
Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts'
node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
Library referenced via 'es2015.symbol.wellknown' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.symbol.wellknown' from file 'node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts'
Library referenced via 'es2015.symbol.wellknown' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.symbol.wellknown' from file 'node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts'
node_modules/typescript/lib/lib.es2016.array.include.d.ts
Library referenced via 'es2016.array.include' from file 'node_modules/typescript/lib/lib.es2016.d.ts'
Library referenced via 'es2016.array.include' from file 'node_modules/typescript/lib/lib.es2016.d.ts'
node_modules/typescript/lib/lib.es2017.object.d.ts
Library referenced via 'es2017.object' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
Library referenced via 'es2017.object' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
Library referenced via 'es2017.sharedmemory' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
Library referenced via 'es2017.sharedmemory' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
node_modules/typescript/lib/lib.es2017.string.d.ts
Library referenced via 'es2017.string' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
Library referenced via 'es2017.string' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
node_modules/typescript/lib/lib.es2017.intl.d.ts
Library referenced via 'es2017.intl' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
Library referenced via 'es2017.intl' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
Library referenced via 'es2017.typedarrays' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
Library referenced via 'es2017.typedarrays' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts
Library referenced via 'es2018.asyncgenerator' from file 'node_modules/typescript/lib/lib.es2018.d.ts'
node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
Library referenced via 'es2018.asynciterable' from file 'node_modules/typescript/lib/lib.es2018.d.ts'
Library referenced via 'es2018.asynciterable' from file 'node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts'
Library referenced via 'esnext.asynciterable' from file 'node_modules/@types/node/ts3.2/index.d.ts'
node_modules/typescript/lib/lib.es2018.intl.d.ts
Library referenced via 'es2018.intl' from file 'node_modules/typescript/lib/lib.es2018.d.ts'
Library referenced via 'es2018.intl' from file 'node_modules/typescript/lib/lib.es2020.intl.d.ts'
node_modules/typescript/lib/lib.es2018.promise.d.ts
Library referenced via 'es2018.promise' from file 'node_modules/typescript/lib/lib.es2018.d.ts'
node_modules/typescript/lib/lib.es2018.regexp.d.ts
Library referenced via 'es2018.regexp' from file 'node_modules/typescript/lib/lib.es2018.d.ts'
node_modules/typescript/lib/lib.es2020.bigint.d.ts
Library referenced via 'esnext.bigint' from file 'node_modules/@types/node/ts3.2/index.d.ts'
node_modules/typescript/lib/lib.es2020.intl.d.ts
Library referenced via 'es2020.intl' from file 'node_modules/typescript/lib/lib.es2020.bigint.d.ts'
node_modules/typescript/lib/lib.esnext.intl.d.ts
Library referenced via 'esnext.intl' from file 'node_modules/@types/node/ts3.2/index.d.ts'
src/constants/json-schema-type.ts
Imported via './constants/json-schema-type' from file 'src/index.ts'
Imported via '../constants/json-schema-type' from file 'src/types/json-schema.ts'
Imported via '../constants/json-schema-type' from file 'src/factories/array.ts'
Imported via '../constants/json-schema-type' from file 'src/types/array-json-schema.ts'
Imported via '../constants/json-schema-type' from file 'src/utils/make-schema.ts'
Imported via '../constants/json-schema-type' from file 'src/utils/nullable.ts'
Imported via '../constants/json-schema-type' from file 'src/factories/boolean.ts'
Imported via '../constants/json-schema-type' from file 'src/types/boolean-json-schema.ts'
Imported via '../constants/json-schema-type' from file 'src/types/string-json-schema.ts'
Imported via '../constants/json-schema-type' from file 'src/factories/string.ts'
Imported via '../constants/json-schema-type' from file 'src/factories/enumeration.ts'
Imported via '../constants/json-schema-type' from file 'src/types/number-json-schema.ts'
Imported via '../constants/json-schema-type' from file 'src/factories/integer.ts'
Imported via '../constants/json-schema-type' from file 'src/types/integer-json-schema.ts'
Imported via '../constants/json-schema-type' from file 'src/factories/number.ts'
Imported via '../constants/json-schema-type' from file 'src/factories/object.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/constants/json-string-format.ts
Imported via './constants/json-string-format' from file 'src/index.ts'
Imported via '../constants/json-string-format' from file 'src/factories/date.ts'
Imported via '../constants/json-string-format' from file 'src/types/string-json-schema.ts'
Imported via '../constants/json-string-format' from file 'src/factories/date-time.ts'
Imported via '../constants/json-string-format' from file 'src/factories/email.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/types/json-schema.ts
Imported via '../types/json-schema' from file 'src/factories/any.ts'
Imported via './json-schema' from file 'src/types/array-json-schema.ts'
Imported via '../types/json-schema' from file 'src/utils/make-schema.ts'
Imported via '../types/json-schema' from file 'src/utils/clean-options.ts'
Imported via '../types/json-schema' from file 'src/utils/nullable.ts'
Imported via '../types/json-schema' from file 'src/utils/clone-with.ts'
Imported via '../types/json-schema' from file 'src/utils/clone.ts'
Imported via './json-schema' from file 'src/types/boolean-json-schema.ts'
Imported via './json-schema' from file 'src/types/string-json-schema.ts'
Imported via '../types/json-schema' from file 'src/factories/enumeration.ts'
Imported via './json-schema' from file 'src/types/number-json-schema.ts'
Imported via '../types/json-schema' from file 'src/factories/list.ts'
Imported via '../types/json-schema' from file 'src/factories/object.ts'
Imported via './json-schema' from file 'src/types/object-json-schema.ts'
Imported via '../types/json-schema' from file 'src/factories/tuple.ts'
Imported via '../types/json-schema' from file 'src/factories/any-of.ts'
Imported via '../types/json-schema' from file 'src/factories/one-of.ts'
Imported via '../types/json-schema' from file 'src/factories/all-of.ts'
Imported via './types/json-schema' from file 'src/index.ts'
Imported via '../types/json-schema' from file 'src/utils/merge-with.ts'
Imported via '../types/json-schema' from file 'src/utils/is-json-schema-like.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/any.ts
Imported via './factories/any' from file 'src/index.ts'
Imported via './any' from file 'src/factories/enumeration.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/types/array-json-schema.ts
Imported via '../types/array-json-schema' from file 'src/factories/array.ts'
Imported via '../types/array-json-schema' from file 'src/factories/list.ts'
Imported via '../types/array-json-schema' from file 'src/factories/tuple.ts'
Imported via './types/array-json-schema' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/types/common-options.ts
Imported via './common-options' from file 'src/types/options.ts'
Imported via '../types/common-options' from file 'src/utils/clean-options.ts'
Imported via './types/common-options' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/types/options.ts
Imported via '../types/options' from file 'src/factories/array.ts'
Imported via '../types/options' from file 'src/utils/make-schema.ts'
Imported via '../types/options' from file 'src/factories/boolean.ts'
Imported via '../types/options' from file 'src/factories/date.ts'
Imported via '../types/options' from file 'src/factories/string.ts'
Imported via '../types/options' from file 'src/factories/date-time.ts'
Imported via '../types/options' from file 'src/factories/email.ts'
Imported via '../types/options' from file 'src/factories/enumeration.ts'
Imported via '../types/options' from file 'src/factories/integer.ts'
Imported via '../types/options' from file 'src/factories/list.ts'
Imported via '../types/options' from file 'src/factories/number.ts'
Imported via '../types/options' from file 'src/factories/object.ts'
Imported via '../types/options' from file 'src/factories/tuple.ts'
Imported via '../types/options' from file 'src/factories/uuid.ts'
Imported via './types/options' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
node_modules/@types/lodash/common/common.d.ts
Referenced via './common/common.d.ts' from file 'node_modules/@types/lodash/index.d.ts'
node_modules/@types/lodash/common/array.d.ts
Referenced via './common/array.d.ts' from file 'node_modules/@types/lodash/index.d.ts'
node_modules/@types/lodash/common/collection.d.ts
Referenced via './common/collection.d.ts' from file 'node_modules/@types/lodash/index.d.ts'
node_modules/@types/lodash/common/date.d.ts
Referenced via './common/date.d.ts' from file 'node_modules/@types/lodash/index.d.ts'
node_modules/@types/lodash/common/function.d.ts
Referenced via './common/function.d.ts' from file 'node_modules/@types/lodash/index.d.ts'
node_modules/@types/lodash/common/lang.d.ts
Referenced via './common/lang.d.ts' from file 'node_modules/@types/lodash/index.d.ts'
node_modules/@types/lodash/common/math.d.ts
Referenced via './common/math.d.ts' from file 'node_modules/@types/lodash/index.d.ts'
node_modules/@types/lodash/common/number.d.ts
Referenced via './common/number.d.ts' from file 'node_modules/@types/lodash/index.d.ts'
node_modules/@types/lodash/common/object.d.ts
Referenced via './common/object.d.ts' from file 'node_modules/@types/lodash/index.d.ts'
node_modules/@types/lodash/common/seq.d.ts
Referenced via './common/seq.d.ts' from file 'node_modules/@types/lodash/index.d.ts'
node_modules/@types/lodash/common/string.d.ts
Referenced via './common/string.d.ts' from file 'node_modules/@types/lodash/index.d.ts'
node_modules/@types/lodash/common/util.d.ts
Referenced via './common/util.d.ts' from file 'node_modules/@types/lodash/index.d.ts'
node_modules/@types/lodash/index.d.ts
Imported via 'lodash' from file 'src/utils/clean-options.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via "../index" from file 'node_modules/@types/lodash/common/common.d.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via "../index" from file 'node_modules/@types/lodash/common/array.d.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via "../index" from file 'node_modules/@types/lodash/common/collection.d.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via "../index" from file 'node_modules/@types/lodash/common/date.d.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via "../index" from file 'node_modules/@types/lodash/common/function.d.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via "../index" from file 'node_modules/@types/lodash/common/lang.d.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via "../index" from file 'node_modules/@types/lodash/common/math.d.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via "../index" from file 'node_modules/@types/lodash/common/number.d.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via "../index" from file 'node_modules/@types/lodash/common/object.d.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via "../index" from file 'node_modules/@types/lodash/common/seq.d.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via "../index" from file 'node_modules/@types/lodash/common/string.d.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via "../index" from file 'node_modules/@types/lodash/common/util.d.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via 'lodash' from file 'src/utils/clone.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via 'lodash' from file 'src/utils/merge-with.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via 'lodash' from file 'src/utils/omit-properties.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via 'lodash' from file 'src/utils/pick-properties.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via 'lodash' from file 'src/utils/require-properties.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via 'lodash' from file 'src/utils/is-json-schema-like.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
src/utils/clean-options.ts
Imported via './clean-options' from file 'src/utils/make-schema.ts'
Imported via './utils/clean-options' from file 'src/index.ts'
node_modules/@bluejay/utils/dist/constants/noop.d.ts
Imported via './constants/noop' from file 'node_modules/@bluejay/utils/dist/index.d.ts' with packageId '@bluejay/utils/dist/constants/noop.d.ts@4.0.0'
node_modules/@bluejay/utils/dist/types/constructible.d.ts
Imported via './types/constructible' from file 'node_modules/@bluejay/utils/dist/index.d.ts' with packageId '@bluejay/utils/dist/types/constructible.d.ts@4.0.0'
node_modules/@bluejay/utils/dist/types/deep-partial.d.ts
Imported via './types/deep-partial' from file 'node_modules/@bluejay/utils/dist/index.d.ts' with packageId '@bluejay/utils/dist/types/deep-partial.d.ts@4.0.0'
node_modules/@bluejay/utils/dist/types/diff.d.ts
Imported via './types/diff' from file 'node_modules/@bluejay/utils/dist/index.d.ts' with packageId '@bluejay/utils/dist/types/diff.d.ts@4.0.0'
node_modules/@bluejay/utils/dist/utils/make-array.d.ts
Imported via './utils/make-array' from file 'node_modules/@bluejay/utils/dist/index.d.ts' with packageId '@bluejay/utils/dist/utils/make-array.d.ts@4.0.0'
node_modules/@bluejay/utils/dist/utils/pick.d.ts
Imported via './utils/pick' from file 'node_modules/@bluejay/utils/dist/index.d.ts' with packageId '@bluejay/utils/dist/utils/pick.d.ts@4.0.0'
node_modules/@bluejay/utils/dist/utils/pluck.d.ts
Imported via './utils/pluck' from file 'node_modules/@bluejay/utils/dist/index.d.ts' with packageId '@bluejay/utils/dist/utils/pluck.d.ts@4.0.0'
node_modules/@bluejay/utils/dist/utils/omit.d.ts
Imported via './utils/omit' from file 'node_modules/@bluejay/utils/dist/index.d.ts' with packageId '@bluejay/utils/dist/utils/omit.d.ts@4.0.0'
node_modules/@bluejay/utils/dist/utils/wait.d.ts
Imported via './utils/wait' from file 'node_modules/@bluejay/utils/dist/index.d.ts' with packageId '@bluejay/utils/dist/utils/wait.d.ts@4.0.0'
node_modules/@bluejay/utils/dist/utils/enum-values.d.ts
Imported via './utils/enum-values' from file 'node_modules/@bluejay/utils/dist/index.d.ts' with packageId '@bluejay/utils/dist/utils/enum-values.d.ts@4.0.0'
node_modules/@bluejay/utils/dist/index.d.ts
Imported via '@bluejay/utils' from file 'src/utils/nullable.ts' with packageId '@bluejay/utils/dist/index.d.ts@4.0.0'
Imported via '@bluejay/utils' from file 'src/factories/enumeration.ts' with packageId '@bluejay/utils/dist/index.d.ts@4.0.0'
src/utils/clone.ts
Imported via './clone' from file 'src/utils/clone-with.ts'
Imported via './utils/clone' from file 'src/index.ts'
Imported via './clone' from file 'src/utils/merge-with.ts'
Imported via './clone' from file 'src/utils/omit-properties.ts'
Imported via './clone' from file 'src/utils/pick-properties.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/utils/clone-with.ts
Imported via './clone-with' from file 'src/utils/nullable.ts'
Imported via './utils/clone-with' from file 'src/index.ts'
Imported via './clone-with' from file 'src/utils/require-properties.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/utils/nullable.ts
Imported via './nullable' from file 'src/utils/make-schema.ts'
Imported via './utils/nullable' from file 'src/index.ts'
src/utils/make-schema.ts
Imported via '../utils/make-schema' from file 'src/factories/array.ts'
Imported via '../utils/make-schema' from file 'src/factories/boolean.ts'
Imported via '../utils/make-schema' from file 'src/factories/string.ts'
Imported via '../utils/make-schema' from file 'src/factories/integer.ts'
Imported via '../utils/make-schema' from file 'src/factories/number.ts'
Imported via '../utils/make-schema' from file 'src/factories/object.ts'
Imported via './utils/make-schema' from file 'src/index.ts'
src/factories/array.ts
Imported via './factories/array' from file 'src/index.ts'
Imported via './array' from file 'src/factories/list.ts'
Imported via './array' from file 'src/factories/tuple.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/types/boolean-json-schema.ts
Imported via '../types/boolean-json-schema' from file 'src/factories/boolean.ts'
Imported via './types/boolean-json-schema' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/boolean.ts
Imported via './factories/boolean' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/types/string-json-schema.ts
Imported via '../types/string-json-schema' from file 'src/factories/date.ts'
Imported via '../types/string-json-schema' from file 'src/factories/string.ts'
Imported via '../types/string-json-schema' from file 'src/factories/date-time.ts'
Imported via '../types/string-json-schema' from file 'src/factories/email.ts'
Imported via '../types/string-json-schema' from file 'src/factories/enumeration.ts'
Imported via '../types/string-json-schema' from file 'src/factories/uuid.ts'
Imported via './types/string-json-schema' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/string.ts
Imported via './string' from file 'src/factories/date.ts'
Imported via './string' from file 'src/factories/date-time.ts'
Imported via './string' from file 'src/factories/email.ts'
Imported via './factories/string' from file 'src/index.ts'
Imported via './string' from file 'src/factories/uuid.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/date.ts
Imported via './factories/date' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/date-time.ts
Imported via './factories/date-time' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/email.ts
Imported via './factories/email' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/types/number-json-schema.ts
Imported via '../types/number-json-schema' from file 'src/factories/enumeration.ts'
Imported via './number-json-schema' from file 'src/types/integer-json-schema.ts'
Imported via '../types/number-json-schema' from file 'src/factories/number.ts'
Imported via './types/number-json-schema' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/enumeration.ts
Imported via './factories/enumeration' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/types/integer-json-schema.ts
Imported via '../types/integer-json-schema' from file 'src/factories/integer.ts'
Imported via './types/integer-json-schema' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/integer.ts
Imported via './factories/integer' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/list.ts
Imported via './factories/list' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/number.ts
Imported via './factories/number' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/types/object-json-schema.ts
Imported via '../types/object-json-schema' from file 'src/factories/object.ts'
Imported via './types/object-json-schema' from file 'src/index.ts'
Imported via '../types/object-json-schema' from file 'src/utils/omit-properties.ts'
Imported via '../types/object-json-schema' from file 'src/utils/pick-properties.ts'
Imported via '../types/object-json-schema' from file 'src/utils/require-properties.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/object.ts
Imported via './factories/object' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/tuple.ts
Imported via './factories/tuple' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/utils/to-string-reg-exp.ts
Imported via '../utils/to-string-reg-exp' from file 'src/factories/uuid.ts'
Imported via './utils/to-string-reg-exp' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/uuid.ts
Imported via './factories/uuid' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/any-of.ts
Imported via './factories/any-of' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/one-of.ts
Imported via './factories/one-of' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/factories/all-of.ts
Imported via './factories/all-of' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/utils/merge-with.ts
Imported via './utils/merge-with' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/utils/omit-properties.ts
Imported via './utils/omit-properties' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/utils/pick-properties.ts
Imported via './utils/pick-properties' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/utils/require-properties.ts
Imported via './utils/require-properties' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/utils/is-json-schema-like.ts
Imported via './utils/is-json-schema-like' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/index.ts
Matched by include pattern 'src' in 'tsconfig.json'
Imported via '..' from file 'src/utils/clone-with.ts'
Imported via '..' from file 'src/utils/merge-with.ts'
node_modules/@types/node/globals.d.ts
Referenced via 'globals.d.ts' from file 'node_modules/@types/node/base.d.ts'
Referenced via '../globals.d.ts' from file 'node_modules/@types/node/ts3.2/globals.d.ts'
node_modules/@types/node/assert.d.ts
Referenced via 'assert.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/async_hooks.d.ts
Referenced via 'async_hooks.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/buffer.d.ts
Referenced via 'buffer.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/child_process.d.ts
Referenced via 'child_process.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/cluster.d.ts
Referenced via 'cluster.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/console.d.ts
Referenced via 'console.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/constants.d.ts
Referenced via 'constants.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/crypto.d.ts
Referenced via 'crypto.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/dgram.d.ts
Referenced via 'dgram.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/dns.d.ts
Referenced via 'dns.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/domain.d.ts
Referenced via 'domain.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/events.d.ts
Referenced via 'events.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/fs.d.ts
Referenced via 'fs.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/http.d.ts
Referenced via 'http.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/http2.d.ts
Referenced via 'http2.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/https.d.ts
Referenced via 'https.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/inspector.d.ts
Referenced via 'inspector.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/module.d.ts
Referenced via 'module.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/net.d.ts
Referenced via 'net.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/os.d.ts
Referenced via 'os.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/path.d.ts
Referenced via 'path.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/perf_hooks.d.ts
Referenced via 'perf_hooks.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/process.d.ts
Referenced via 'process.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/punycode.d.ts
Referenced via 'punycode.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/querystring.d.ts
Referenced via 'querystring.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/readline.d.ts
Referenced via 'readline.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/repl.d.ts
Referenced via 'repl.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/stream.d.ts
Referenced via 'stream.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/string_decoder.d.ts
Referenced via 'string_decoder.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/timers.d.ts
Referenced via 'timers.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/tls.d.ts
Referenced via 'tls.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/trace_events.d.ts
Referenced via 'trace_events.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/tty.d.ts
Referenced via 'tty.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/url.d.ts
Referenced via 'url.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/util.d.ts
Referenced via 'util.d.ts' from file 'node_modules/@types/node/base.d.ts'
Referenced via '../util.d.ts' from file 'node_modules/@types/node/ts3.2/util.d.ts'
node_modules/@types/node/v8.d.ts
Referenced via 'v8.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/vm.d.ts
Referenced via 'vm.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/worker_threads.d.ts
Referenced via 'worker_threads.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/zlib.d.ts
Referenced via 'zlib.d.ts' from file 'node_modules/@types/node/base.d.ts'
node_modules/@types/node/base.d.ts
Referenced via '../base.d.ts' from file 'node_modules/@types/node/ts3.2/index.d.ts'
node_modules/@types/node/ts3.2/util.d.ts
Referenced via 'util.d.ts' from file 'node_modules/@types/node/ts3.2/index.d.ts'
node_modules/@types/node/ts3.2/globals.d.ts
Referenced via 'globals.d.ts' from file 'node_modules/@types/node/ts3.2/index.d.ts'
node_modules/@types/node/ts3.2/index.d.ts
Entry point of type library 'node' specified in compilerOptions with packageId '@types/node/ts3.2/index.d.ts@12.7.0'
node_modules/@types/mocha/index.d.ts
Entry point of type library 'mocha' specified in compilerOptions with packageId '@types/mocha/index.d.ts@5.2.3'
node_modules/@types/chai/index.d.ts
Entry point of type library 'chai' specified in compilerOptions with packageId '@types/chai/index.d.ts@4.3.9'
Info 64 -----------------------------------------------
Info 65 FileWatcher:: Added:: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/package.json 250 undefined WatchType: package.json file
Info 66 AutoImportProviderProject: found 1 root files in 1 dependencies in 1.7019171714782715 ms
Info 67 Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1*
Info 68 Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed: 2.828709125518799ms
Info 69 Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
Info 70 Files (1)
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/ajv/lib/ajv.d.ts
node_modules/ajv/lib/ajv.d.ts
Root file specified for compilation
Info 71 -----------------------------------------------
Info 72 event:
{"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json"}}
Info 73 event:
{"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"1e5750d4a0b9c86a262efea4fae9440dc0c7d1241887277388e6caf6a0d566d8","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":40,"tsSize":19199,"tsx":0,"tsxSize":0,"dts":98,"dtsSize":1630137,"deferred":0,"deferredSize":0},"compilerOptions":{"module":"commonjs","target":"es6","moduleResolution":"node","noEmit":true,"strict":true,"strictNullChecks":true,"alwaysStrict":true,"pretty":true,"declaration":true,"noImplicitAny":true,"noImplicitReturns":true,"suppressImplicitAnyIndexErrors":true,"inlineSourceMap":true,"outDir":"","lib":["es2017"],"types":["","",""],"removeComments":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":true,"compileOnSave":true,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"4.9.5"}}}
Info 74 event:
{"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/enumeration.ts","configFile":"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json","diagnostics":[]}}
Info 75 Project '/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json' (Configured)
Files (138)
-----------------------------------------------
Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
Files (1)
-----------------------------------------------
Open files:
FileName: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/enumeration.ts ProjectRootPath: undefined
Projects: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json
Info 76 Starting updateGraphWorker: Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json
Info 77 Finishing updateGraphWorker: Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed: 5.7904157638549805ms
Info 78 Different program with same set of files
Info 79 response:
{"seq":0,"type":"response","command":"semanticDiagnosticsSync","request_seq":3,"success":true,"performanceData":{"updateGraphDurationMs":5.7904157638549805},"body":[{"start":{"line":10,"offset":74},"end":{"line":10,"offset":86},"text":"Argument of type 'E' is not assignable to parameter of type '{}'.","code":2345,"category":"error","relatedInformation":[{"span":{"start":{"line":9,"offset":29},"end":{"line":9,"offset":30},"file":"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/enumeration.ts"},"message":"This type parameter might need an `extends {}` constraint.","category":"error","code":2208}]}]}
Info 80 response:
{"seq":0,"type":"response","command":"syntacticDiagnosticsSync","request_seq":4,"success":true,"body":[]}
Info 81 response:
{"seq":0,"type":"response","command":"suggestionDiagnosticsSync","request_seq":5,"success":true,"body":[]}
Info 82 response:
{"seq":0,"type":"response","command":"getCodeFixes","request_seq":6,"success":true,"body":[]}
Info 83 response:
{"seq":0,"type":"response","command":"semanticDiagnosticsSync","request_seq":7,"success":true,"body":[{"start":{"line":10,"offset":74},"end":{"line":10,"offset":86},"text":"Argument of type 'E' is not assignable to parameter of type '{}'.","code":2345,"category":"error","relatedInformation":[{"span":{"start":{"line":9,"offset":29},"end":{"line":9,"offset":30},"file":"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/enumeration.ts"},"message":"This type parameter might need an `extends {}` constraint.","category":"error","code":2208}]}]}
Info 84 response:
{"seq":0,"type":"response","command":"syntacticDiagnosticsSync","request_seq":8,"success":true,"body":[]}
Info 85 response:
{"seq":0,"type":"response","command":"suggestionDiagnosticsSync","request_seq":9,"success":true,"body":[]}
Info 86 Starting updateGraphWorker: Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json
Info 87 Finishing updateGraphWorker: Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed: 16.114791870117188ms
Info 88 Different program with same set of files
Info 89 response:
{"seq":0,"type":"response","command":"semanticDiagnosticsSync","request_seq":11,"success":true,"performanceData":{"updateGraphDurationMs":16.114791870117188},"body":[]}
Info 90 response:
{"seq":0,"type":"response","command":"syntacticDiagnosticsSync","request_seq":12,"success":true,"body":[{"start":{"line":10,"offset":90},"end":{"line":10,"offset":91},"text":"Type expected.","code":1110,"category":"error"}]}
Info 91 response:
{"seq":0,"type":"response","command":"suggestionDiagnosticsSync","request_seq":13,"success":true,"body":[]}
Info 92 Starting updateGraphWorker: Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json
Info 93 Finishing updateGraphWorker: Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json Version: 4 structureChanged: false structureIsReused:: Completely Elapsed: 16.426499843597412ms
Info 94 Different program with same set of files
Info 95 response:
{"seq":0,"type":"response","command":"semanticDiagnosticsSync","request_seq":15,"success":true,"performanceData":{"updateGraphDurationMs":16.426499843597412},"body":[]}
Info 96 response:
{"seq":0,"type":"response","command":"syntacticDiagnosticsSync","request_seq":16,"success":true,"body":[]}
Info 97 response:
{"seq":0,"type":"response","command":"suggestionDiagnosticsSync","request_seq":17,"success":true,"body":[]}
Info 98 response:
{"seq":0,"type":"response","command":"semanticDiagnosticsSync","request_seq":18,"success":true,"body":[]}
Info 99 response:
{"seq":0,"type":"response","command":"syntacticDiagnosticsSync","request_seq":19,"success":true,"body":[]}
Info 100 response:
{"seq":0,"type":"response","command":"suggestionDiagnosticsSync","request_seq":20,"success":true,"body":[]}
Info 101 response:
{"seq":0,"type":"response","command":"semanticDiagnosticsSync","request_seq":21,"success":true,"body":[]}
Info 102 response:
{"seq":0,"type":"response","command":"syntacticDiagnosticsSync","request_seq":22,"success":true,"body":[]}
Info 103 response:
{"seq":0,"type":"response","command":"suggestionDiagnosticsSync","request_seq":23,"success":true,"body":[]}
Info 104 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/src/factories/enumeration.ts~ :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/src 1 undefined Config: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Wild card directory
Info 105 Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json Detected file add/remove of non supported extension: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/src/factories/enumeration.ts~
Info 106 Elapsed:: 0.6322078704833984ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/src/factories/enumeration.ts~ :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/src 1 undefined Config: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Wild card directory
Info 107 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/enumeration.ts~ :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 108 Elapsed:: 0.19099998474121094ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/enumeration.ts~ :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 109 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/src/factories/enumeration.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/src 1 undefined Config: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Wild card directory
Info 110 Elapsed:: 0.7562909126281738ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/src/factories/enumeration.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/src 1 undefined Config: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Wild card directory
Info 111 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/enumeration.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 112 Elapsed:: 0.07566595077514648ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src/factories/enumeration.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/src 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 113 response:
{"seq":0,"type":"response","command":"semanticDiagnosticsSync","request_seq":24,"success":true,"body":[]}
Info 114 response:
{"seq":0,"type":"response","command":"syntacticDiagnosticsSync","request_seq":25,"success":true,"body":[]}
Info 115 response:
{"seq":0,"type":"response","command":"suggestionDiagnosticsSync","request_seq":26,"success":true,"body":[]}
Info 116 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 117 Elapsed:: 0.178375244140625ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 118 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 119 Elapsed:: 0.028749942779541016ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 120 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 121 Elapsed:: 0.009624958038330078ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 122 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 123 Elapsed:: 0.013957977294921875ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 124 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/index-51fcdaaa50bd415aba10c372992ab0ebf0b02274de63ec36be483f7f19920357.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 125 Elapsed:: 0.05112504959106445ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/index-51fcdaaa50bd415aba10c372992ab0ebf0b02274de63ec36be483f7f19920357.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 126 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/index-51fcdaaa50bd415aba10c372992ab0ebf0b02274de63ec36be483f7f19920357.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 127 Elapsed:: 0.03137493133544922ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/index-51fcdaaa50bd415aba10c372992ab0ebf0b02274de63ec36be483f7f19920357.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 128 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/index-51fcdaaa50bd415aba10c372992ab0ebf0b02274de63ec36be483f7f19920357.ts.2135387276 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 129 Elapsed:: 0.15675020217895508ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/index-51fcdaaa50bd415aba10c372992ab0ebf0b02274de63ec36be483f7f19920357.ts.2135387276 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 130 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/index-51fcdaaa50bd415aba10c372992ab0ebf0b02274de63ec36be483f7f19920357.ts.2135387276 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 131 Elapsed:: 0.017124652862548828ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/index-51fcdaaa50bd415aba10c372992ab0ebf0b02274de63ec36be483f7f19920357.ts.2135387276 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 132 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/index-51fcdaaa50bd415aba10c372992ab0ebf0b02274de63ec36be483f7f19920357.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 133 Elapsed:: 0.00820779800415039ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/index-51fcdaaa50bd415aba10c372992ab0ebf0b02274de63ec36be483f7f19920357.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 134 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/index-51fcdaaa50bd415aba10c372992ab0ebf0b02274de63ec36be483f7f19920357.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 135 Elapsed:: 0.012457847595214844ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/index-51fcdaaa50bd415aba10c372992ab0ebf0b02274de63ec36be483f7f19920357.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 136 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/json-schema-type-57a4b61fdaa65081dde6d056b3cf9554164974fed306626dae425a8b3d4865f6.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 137 Elapsed:: 0.039999961853027344ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/json-schema-type-57a4b61fdaa65081dde6d056b3cf9554164974fed306626dae425a8b3d4865f6.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 138 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/json-schema-type-57a4b61fdaa65081dde6d056b3cf9554164974fed306626dae425a8b3d4865f6.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 139 Elapsed:: 0.02879190444946289ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/json-schema-type-57a4b61fdaa65081dde6d056b3cf9554164974fed306626dae425a8b3d4865f6.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 140 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/json-schema-type-57a4b61fdaa65081dde6d056b3cf9554164974fed306626dae425a8b3d4865f6.ts.3389392265 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 141 Elapsed:: 0.008749961853027344ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/json-schema-type-57a4b61fdaa65081dde6d056b3cf9554164974fed306626dae425a8b3d4865f6.ts.3389392265 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 142 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/json-schema-type-57a4b61fdaa65081dde6d056b3cf9554164974fed306626dae425a8b3d4865f6.ts.3389392265 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 143 Elapsed:: 0.020374774932861328ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/json-schema-type-57a4b61fdaa65081dde6d056b3cf9554164974fed306626dae425a8b3d4865f6.ts.3389392265 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 144 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/json-schema-type-57a4b61fdaa65081dde6d056b3cf9554164974fed306626dae425a8b3d4865f6.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 145 Elapsed:: 0.007833003997802734ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/json-schema-type-57a4b61fdaa65081dde6d056b3cf9554164974fed306626dae425a8b3d4865f6.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 146 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/json-schema-type-57a4b61fdaa65081dde6d056b3cf9554164974fed306626dae425a8b3d4865f6.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 147 Elapsed:: 0.01595926284790039ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/json-schema-type-57a4b61fdaa65081dde6d056b3cf9554164974fed306626dae425a8b3d4865f6.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 148 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/json-string-format-b8d8fd4565a510daefe6f51449de1aec1acd68ec2182580eefeba965aa2965f5.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 149 Elapsed:: 0.007540702819824219ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/json-string-format-b8d8fd4565a510daefe6f51449de1aec1acd68ec2182580eefeba965aa2965f5.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 150 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/json-string-format-b8d8fd4565a510daefe6f51449de1aec1acd68ec2182580eefeba965aa2965f5.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 151 Elapsed:: 0.011959075927734375ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/json-string-format-b8d8fd4565a510daefe6f51449de1aec1acd68ec2182580eefeba965aa2965f5.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 152 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/json-string-format-b8d8fd4565a510daefe6f51449de1aec1acd68ec2182580eefeba965aa2965f5.ts.2313733714 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 153 Elapsed:: 0.007540702819824219ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/json-string-format-b8d8fd4565a510daefe6f51449de1aec1acd68ec2182580eefeba965aa2965f5.ts.2313733714 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 154 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/json-string-format-b8d8fd4565a510daefe6f51449de1aec1acd68ec2182580eefeba965aa2965f5.ts.2313733714 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 155 Elapsed:: 0.011625289916992188ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/json-string-format-b8d8fd4565a510daefe6f51449de1aec1acd68ec2182580eefeba965aa2965f5.ts.2313733714 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 156 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/json-string-format-b8d8fd4565a510daefe6f51449de1aec1acd68ec2182580eefeba965aa2965f5.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 157 Elapsed:: 0.007625102996826172ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/json-string-format-b8d8fd4565a510daefe6f51449de1aec1acd68ec2182580eefeba965aa2965f5.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 158 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/json-string-format-b8d8fd4565a510daefe6f51449de1aec1acd68ec2182580eefeba965aa2965f5.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 159 Elapsed:: 0.011416912078857422ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/json-string-format-b8d8fd4565a510daefe6f51449de1aec1acd68ec2182580eefeba965aa2965f5.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 160 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/any-09b7f8ebdf674155ebf9a8ba2fbd3c043397d741bd9b057675dd5933ff44d166.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 161 Elapsed:: 0.007166862487792969ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/any-09b7f8ebdf674155ebf9a8ba2fbd3c043397d741bd9b057675dd5933ff44d166.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 162 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/any-09b7f8ebdf674155ebf9a8ba2fbd3c043397d741bd9b057675dd5933ff44d166.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 163 Elapsed:: 0.011332988739013672ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/any-09b7f8ebdf674155ebf9a8ba2fbd3c043397d741bd9b057675dd5933ff44d166.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 164 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/any-09b7f8ebdf674155ebf9a8ba2fbd3c043397d741bd9b057675dd5933ff44d166.ts.4208366694 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 165 Elapsed:: 0.0072078704833984375ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/any-09b7f8ebdf674155ebf9a8ba2fbd3c043397d741bd9b057675dd5933ff44d166.ts.4208366694 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 166 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/any-09b7f8ebdf674155ebf9a8ba2fbd3c043397d741bd9b057675dd5933ff44d166.ts.4208366694 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 167 Elapsed:: 0.011291980743408203ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/any-09b7f8ebdf674155ebf9a8ba2fbd3c043397d741bd9b057675dd5933ff44d166.ts.4208366694 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 168 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/any-09b7f8ebdf674155ebf9a8ba2fbd3c043397d741bd9b057675dd5933ff44d166.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 169 Elapsed:: 0.007124900817871094ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/any-09b7f8ebdf674155ebf9a8ba2fbd3c043397d741bd9b057675dd5933ff44d166.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 170 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/any-09b7f8ebdf674155ebf9a8ba2fbd3c043397d741bd9b057675dd5933ff44d166.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 171 Elapsed:: 0.010999679565429688ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/any-09b7f8ebdf674155ebf9a8ba2fbd3c043397d741bd9b057675dd5933ff44d166.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 172 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/array-2d11061b9fa6b6b589c415a2a7cbbe442e83da943f26fd30fdd7b180ba3b502f.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 173 Elapsed:: 0.038333892822265625ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/array-2d11061b9fa6b6b589c415a2a7cbbe442e83da943f26fd30fdd7b180ba3b502f.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 174 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/array-2d11061b9fa6b6b589c415a2a7cbbe442e83da943f26fd30fdd7b180ba3b502f.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 175 Elapsed:: 0.025499820709228516ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/array-2d11061b9fa6b6b589c415a2a7cbbe442e83da943f26fd30fdd7b180ba3b502f.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 176 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/array-2d11061b9fa6b6b589c415a2a7cbbe442e83da943f26fd30fdd7b180ba3b502f.ts.930354377 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 177 Elapsed:: 0.009167194366455078ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/array-2d11061b9fa6b6b589c415a2a7cbbe442e83da943f26fd30fdd7b180ba3b502f.ts.930354377 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 178 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/array-2d11061b9fa6b6b589c415a2a7cbbe442e83da943f26fd30fdd7b180ba3b502f.ts.930354377 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 179 Elapsed:: 0.013500213623046875ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/array-2d11061b9fa6b6b589c415a2a7cbbe442e83da943f26fd30fdd7b180ba3b502f.ts.930354377 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 180 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/array-2d11061b9fa6b6b589c415a2a7cbbe442e83da943f26fd30fdd7b180ba3b502f.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 181 Elapsed:: 0.007999897003173828ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/array-2d11061b9fa6b6b589c415a2a7cbbe442e83da943f26fd30fdd7b180ba3b502f.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 182 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/array-2d11061b9fa6b6b589c415a2a7cbbe442e83da943f26fd30fdd7b180ba3b502f.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 183 Elapsed:: 0.018041133880615234ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/array-2d11061b9fa6b6b589c415a2a7cbbe442e83da943f26fd30fdd7b180ba3b502f.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 184 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/make-schema-e20ef5a9712e6066aa4d0d331c2255d8398d592c9df14df2a677e16113819976.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 185 Elapsed:: 0.007541179656982422ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/make-schema-e20ef5a9712e6066aa4d0d331c2255d8398d592c9df14df2a677e16113819976.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 186 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/make-schema-e20ef5a9712e6066aa4d0d331c2255d8398d592c9df14df2a677e16113819976.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 187 Elapsed:: 0.011625289916992188ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/make-schema-e20ef5a9712e6066aa4d0d331c2255d8398d592c9df14df2a677e16113819976.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 188 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/make-schema-e20ef5a9712e6066aa4d0d331c2255d8398d592c9df14df2a677e16113819976.ts.1588592455 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 189 Elapsed:: 0.007459163665771484ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/make-schema-e20ef5a9712e6066aa4d0d331c2255d8398d592c9df14df2a677e16113819976.ts.1588592455 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 190 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/make-schema-e20ef5a9712e6066aa4d0d331c2255d8398d592c9df14df2a677e16113819976.ts.1588592455 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 191 Elapsed:: 0.01154184341430664ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/make-schema-e20ef5a9712e6066aa4d0d331c2255d8398d592c9df14df2a677e16113819976.ts.1588592455 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 192 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/make-schema-e20ef5a9712e6066aa4d0d331c2255d8398d592c9df14df2a677e16113819976.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 193 Elapsed:: 0.007292270660400391ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/make-schema-e20ef5a9712e6066aa4d0d331c2255d8398d592c9df14df2a677e16113819976.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 194 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/make-schema-e20ef5a9712e6066aa4d0d331c2255d8398d592c9df14df2a677e16113819976.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 195 Elapsed:: 0.011291980743408203ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/make-schema-e20ef5a9712e6066aa4d0d331c2255d8398d592c9df14df2a677e16113819976.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 196 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clean-options-da012163f9efb1c70e727a267aa7f75a27d0022c491f0659469cf2a7fc5e1748.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 197 Elapsed:: 0.007292270660400391ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clean-options-da012163f9efb1c70e727a267aa7f75a27d0022c491f0659469cf2a7fc5e1748.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 198 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clean-options-da012163f9efb1c70e727a267aa7f75a27d0022c491f0659469cf2a7fc5e1748.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 199 Elapsed:: 0.011167049407958984ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clean-options-da012163f9efb1c70e727a267aa7f75a27d0022c491f0659469cf2a7fc5e1748.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 200 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clean-options-da012163f9efb1c70e727a267aa7f75a27d0022c491f0659469cf2a7fc5e1748.ts.2788532348 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 201 Elapsed:: 0.007209300994873047ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clean-options-da012163f9efb1c70e727a267aa7f75a27d0022c491f0659469cf2a7fc5e1748.ts.2788532348 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 202 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clean-options-da012163f9efb1c70e727a267aa7f75a27d0022c491f0659469cf2a7fc5e1748.ts.2788532348 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 203 Elapsed:: 0.012332916259765625ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clean-options-da012163f9efb1c70e727a267aa7f75a27d0022c491f0659469cf2a7fc5e1748.ts.2788532348 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 204 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clean-options-da012163f9efb1c70e727a267aa7f75a27d0022c491f0659469cf2a7fc5e1748.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 205 Elapsed:: 0.0072078704833984375ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clean-options-da012163f9efb1c70e727a267aa7f75a27d0022c491f0659469cf2a7fc5e1748.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 206 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clean-options-da012163f9efb1c70e727a267aa7f75a27d0022c491f0659469cf2a7fc5e1748.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 207 Elapsed:: 0.011291980743408203ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clean-options-da012163f9efb1c70e727a267aa7f75a27d0022c491f0659469cf2a7fc5e1748.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 208 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/nullable-05e3626112d05804b16a00b4f363c652197ca89771d3fe75128330bb12a62c30.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 209 Elapsed:: 0.038333892822265625ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/nullable-05e3626112d05804b16a00b4f363c652197ca89771d3fe75128330bb12a62c30.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 210 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/nullable-05e3626112d05804b16a00b4f363c652197ca89771d3fe75128330bb12a62c30.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 211 Elapsed:: 0.026124954223632812ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/nullable-05e3626112d05804b16a00b4f363c652197ca89771d3fe75128330bb12a62c30.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 212 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/nullable-05e3626112d05804b16a00b4f363c652197ca89771d3fe75128330bb12a62c30.ts.238608434 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 213 Elapsed:: 0.008541107177734375ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/nullable-05e3626112d05804b16a00b4f363c652197ca89771d3fe75128330bb12a62c30.ts.238608434 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 214 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/nullable-05e3626112d05804b16a00b4f363c652197ca89771d3fe75128330bb12a62c30.ts.238608434 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 215 Elapsed:: 0.013167381286621094ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/nullable-05e3626112d05804b16a00b4f363c652197ca89771d3fe75128330bb12a62c30.ts.238608434 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 216 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/nullable-05e3626112d05804b16a00b4f363c652197ca89771d3fe75128330bb12a62c30.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 217 Elapsed:: 0.007500171661376953ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/nullable-05e3626112d05804b16a00b4f363c652197ca89771d3fe75128330bb12a62c30.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 218 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/nullable-05e3626112d05804b16a00b4f363c652197ca89771d3fe75128330bb12a62c30.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 219 Elapsed:: 0.011875152587890625ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/nullable-05e3626112d05804b16a00b4f363c652197ca89771d3fe75128330bb12a62c30.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 220 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clone-with-adac1635890b40d81c012ae6238656282e361631986d68e46bb2c6f38ffcc6eb.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 221 Elapsed:: 0.007292270660400391ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clone-with-adac1635890b40d81c012ae6238656282e361631986d68e46bb2c6f38ffcc6eb.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 222 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clone-with-adac1635890b40d81c012ae6238656282e361631986d68e46bb2c6f38ffcc6eb.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 223 Elapsed:: 0.011791706085205078ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clone-with-adac1635890b40d81c012ae6238656282e361631986d68e46bb2c6f38ffcc6eb.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 224 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clone-with-adac1635890b40d81c012ae6238656282e361631986d68e46bb2c6f38ffcc6eb.ts.373173928 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 225 Elapsed:: 0.007625102996826172ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clone-with-adac1635890b40d81c012ae6238656282e361631986d68e46bb2c6f38ffcc6eb.ts.373173928 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 226 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clone-with-adac1635890b40d81c012ae6238656282e361631986d68e46bb2c6f38ffcc6eb.ts.373173928 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 227 Elapsed:: 0.01145792007446289ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clone-with-adac1635890b40d81c012ae6238656282e361631986d68e46bb2c6f38ffcc6eb.ts.373173928 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 228 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clone-with-adac1635890b40d81c012ae6238656282e361631986d68e46bb2c6f38ffcc6eb.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 229 Elapsed:: 0.007374763488769531ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clone-with-adac1635890b40d81c012ae6238656282e361631986d68e46bb2c6f38ffcc6eb.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 230 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clone-with-adac1635890b40d81c012ae6238656282e361631986d68e46bb2c6f38ffcc6eb.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 231 Elapsed:: 0.011709213256835938ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clone-with-adac1635890b40d81c012ae6238656282e361631986d68e46bb2c6f38ffcc6eb.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 232 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clone-cec75775725465f41b98781475d9ad5936efc38d0ecf4f04bdcf3a781ccde6e1.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 233 Elapsed:: 0.0072917938232421875ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clone-cec75775725465f41b98781475d9ad5936efc38d0ecf4f04bdcf3a781ccde6e1.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 234 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clone-cec75775725465f41b98781475d9ad5936efc38d0ecf4f04bdcf3a781ccde6e1.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 235 Elapsed:: 0.011333942413330078ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clone-cec75775725465f41b98781475d9ad5936efc38d0ecf4f04bdcf3a781ccde6e1.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 236 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clone-cec75775725465f41b98781475d9ad5936efc38d0ecf4f04bdcf3a781ccde6e1.ts.3605483428 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 237 Elapsed:: 0.008124828338623047ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clone-cec75775725465f41b98781475d9ad5936efc38d0ecf4f04bdcf3a781ccde6e1.ts.3605483428 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 238 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clone-cec75775725465f41b98781475d9ad5936efc38d0ecf4f04bdcf3a781ccde6e1.ts.3605483428 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 239 Elapsed:: 0.01166677474975586ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clone-cec75775725465f41b98781475d9ad5936efc38d0ecf4f04bdcf3a781ccde6e1.ts.3605483428 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 240 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clone-cec75775725465f41b98781475d9ad5936efc38d0ecf4f04bdcf3a781ccde6e1.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 241 Elapsed:: 0.007542133331298828ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/clone-cec75775725465f41b98781475d9ad5936efc38d0ecf4f04bdcf3a781ccde6e1.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 242 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clone-cec75775725465f41b98781475d9ad5936efc38d0ecf4f04bdcf3a781ccde6e1.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 243 Elapsed:: 0.010957717895507812ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/clone-cec75775725465f41b98781475d9ad5936efc38d0ecf4f04bdcf3a781ccde6e1.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 244 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 245 Elapsed:: 0.007167339324951172ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 246 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 247 Elapsed:: 0.010999679565429688ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 248 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.ts.3726282222 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 249 Elapsed:: 0.007416725158691406ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.ts.3726282222 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 250 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.ts.3726282222 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 251 Elapsed:: 0.013957977294921875ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.ts.3726282222 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 252 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.ts.3726282222 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 253 Elapsed:: 0.04166698455810547ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.ts.3726282222 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 254 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.ts.3726282222 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 255 Elapsed:: 0.025332927703857422ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.ts.3726282222 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 256 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 257 Elapsed:: 0.0086669921875ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 258 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 259 Elapsed:: 0.012958049774169922ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/boolean-e6580d69fc39560154a008a66c0878493ed3671a8be97c93c7257f24573e8480.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 260 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/date-fdc0b98da0ed40035de55ff53210df9aae2ef55ad3bf8c6c9e6f82977d800cda.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 261 Elapsed:: 0.007625102996826172ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/date-fdc0b98da0ed40035de55ff53210df9aae2ef55ad3bf8c6c9e6f82977d800cda.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 262 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/date-fdc0b98da0ed40035de55ff53210df9aae2ef55ad3bf8c6c9e6f82977d800cda.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 263 Elapsed:: 0.011291980743408203ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/date-fdc0b98da0ed40035de55ff53210df9aae2ef55ad3bf8c6c9e6f82977d800cda.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 264 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/date-fdc0b98da0ed40035de55ff53210df9aae2ef55ad3bf8c6c9e6f82977d800cda.ts.1767742285 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 265 Elapsed:: 0.00749969482421875ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/date-fdc0b98da0ed40035de55ff53210df9aae2ef55ad3bf8c6c9e6f82977d800cda.ts.1767742285 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 266 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/date-fdc0b98da0ed40035de55ff53210df9aae2ef55ad3bf8c6c9e6f82977d800cda.ts.1767742285 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 267 Elapsed:: 0.011167049407958984ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/date-fdc0b98da0ed40035de55ff53210df9aae2ef55ad3bf8c6c9e6f82977d800cda.ts.1767742285 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 268 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/date-fdc0b98da0ed40035de55ff53210df9aae2ef55ad3bf8c6c9e6f82977d800cda.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 269 Elapsed:: 0.0072917938232421875ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/date-fdc0b98da0ed40035de55ff53210df9aae2ef55ad3bf8c6c9e6f82977d800cda.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 270 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/date-fdc0b98da0ed40035de55ff53210df9aae2ef55ad3bf8c6c9e6f82977d800cda.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 271 Elapsed:: 0.010875225067138672ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/date-fdc0b98da0ed40035de55ff53210df9aae2ef55ad3bf8c6c9e6f82977d800cda.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 272 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/string-4fa4cfc073ed5798950f5801c7a8e2f60e65cd06ae6b78cf20adfbf077113418.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 273 Elapsed:: 0.007291316986083984ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/string-4fa4cfc073ed5798950f5801c7a8e2f60e65cd06ae6b78cf20adfbf077113418.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 274 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/string-4fa4cfc073ed5798950f5801c7a8e2f60e65cd06ae6b78cf20adfbf077113418.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 275 Elapsed:: 0.011042118072509766ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/string-4fa4cfc073ed5798950f5801c7a8e2f60e65cd06ae6b78cf20adfbf077113418.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 276 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/string-4fa4cfc073ed5798950f5801c7a8e2f60e65cd06ae6b78cf20adfbf077113418.ts.454612293 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 277 Elapsed:: 0.007375240325927734ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/string-4fa4cfc073ed5798950f5801c7a8e2f60e65cd06ae6b78cf20adfbf077113418.ts.454612293 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 278 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/string-4fa4cfc073ed5798950f5801c7a8e2f60e65cd06ae6b78cf20adfbf077113418.ts.454612293 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 279 Elapsed:: 0.010832786560058594ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/string-4fa4cfc073ed5798950f5801c7a8e2f60e65cd06ae6b78cf20adfbf077113418.ts.454612293 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 280 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/string-4fa4cfc073ed5798950f5801c7a8e2f60e65cd06ae6b78cf20adfbf077113418.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 281 Elapsed:: 0.007167339324951172ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/string-4fa4cfc073ed5798950f5801c7a8e2f60e65cd06ae6b78cf20adfbf077113418.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 282 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/string-4fa4cfc073ed5798950f5801c7a8e2f60e65cd06ae6b78cf20adfbf077113418.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 283 Elapsed:: 0.010750293731689453ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules/.cache/nyc/string-4fa4cfc073ed5798950f5801c7a8e2f60e65cd06ae6b78cf20adfbf077113418.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/schema/tsconfig.json WatchType: Failed Lookup Locations
Info 284 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/date-time-93fcd314f19e622f5dd8097b8c4382de49d9fe01d81dc48c1c5a7d60cc85769b.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 285 Elapsed:: 0.007500171661376953ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules/.cache/nyc/date-time-93fcd314f19e622f5dd8097b8c4382de49d9fe01d81dc48c1c5a7d60cc85769b.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/schema/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache