-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.log27248
1121 lines (1113 loc) · 194 KB
/
.log27248
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/countries/test
Info 2 For info: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/test/global.d.ts :: Config file name: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json
Info 3 Creating configuration project /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json
Info 4 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json 2000 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Config file
Info 5 event:
{"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json","reason":"Creating possible configured project for /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/test/global.d.ts to open"}}
Info 6 Config: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json : {
"rootNames": [
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/index.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/countries.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/country.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/currencies.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/currency.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/language.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/languages.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/country-code.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/currency-code.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/iso-6391-language-code.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/iso-6392b-language-code.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/iso-6392t-language-code.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/iso-6393-language-code.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/data/countries.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/data/currencies.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/data/languages.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/interfaces/country.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/interfaces/currency.ts",
"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/interfaces/language.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,
"experimentalDecorators": true,
"inlineSourceMap": true,
"outDir": "/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/dist",
"lib": [
"lib.es2017.d.ts"
],
"types": [
"node",
"mocha",
"chai"
],
"removeComments": true,
"configFilePath": "/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json"
}
}
Info 7 DirectoryWatcher:: Added:: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/src 1 undefined Config: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Wild card directory
Info 8 Elapsed:: 0.6119580268859863ms DirectoryWatcher:: Added:: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/src 1 undefined Config: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Wild card directory
Info 9 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/index.ts 500 undefined WatchType: Closed Script info
Info 10 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/countries.ts 500 undefined WatchType: Closed Script info
Info 11 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/country.ts 500 undefined WatchType: Closed Script info
Info 12 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/currencies.ts 500 undefined WatchType: Closed Script info
Info 13 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/currency.ts 500 undefined WatchType: Closed Script info
Info 14 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/language.ts 500 undefined WatchType: Closed Script info
Info 15 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/languages.ts 500 undefined WatchType: Closed Script info
Info 16 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/country-code.ts 500 undefined WatchType: Closed Script info
Info 17 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/currency-code.ts 500 undefined WatchType: Closed Script info
Info 18 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/iso-6391-language-code.ts 500 undefined WatchType: Closed Script info
Info 19 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/iso-6392b-language-code.ts 500 undefined WatchType: Closed Script info
Info 20 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/iso-6392t-language-code.ts 500 undefined WatchType: Closed Script info
Info 21 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/iso-6393-language-code.ts 500 undefined WatchType: Closed Script info
Info 22 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/data/countries.ts 500 undefined WatchType: Closed Script info
Info 23 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/data/currencies.ts 500 undefined WatchType: Closed Script info
Info 24 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/data/languages.ts 500 undefined WatchType: Closed Script info
Info 25 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/interfaces/country.ts 500 undefined WatchType: Closed Script info
Info 26 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/interfaces/currency.ts 500 undefined WatchType: Closed Script info
Info 27 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/interfaces/language.ts 500 undefined WatchType: Closed Script info
Info 28 Starting updateGraphWorker: Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json
Info 29 DirectoryWatcher:: Added:: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 30 Elapsed:: 0.13004207611083984ms DirectoryWatcher:: Added:: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 31 DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 32 Elapsed:: 0.009292125701904297ms DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 33 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/package.json 2000 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: File location affecting resolution
Info 34 DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 35 Elapsed:: 0.01737499237060547ms DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 36 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/lodash/package.json 2000 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: File location affecting resolution
Info 37 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/package.json 2000 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: File location affecting resolution
Info 38 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/mocha/package.json 2000 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: File location affecting resolution
Info 39 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/chai/package.json 2000 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: File location affecting resolution
Info 40 Finishing updateGraphWorker: Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed: 353.19216680526733ms
Info 41 Project '/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json' (Configured)
Info 42 Files (106)
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es5.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2016.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2017.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2018.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.core.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.collection.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.generator.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.iterable.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.promise.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.proxy.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.reflect.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.symbol.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2016.array.include.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2017.object.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2017.string.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2017.intl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2018.intl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2018.promise.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2018.regexp.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2020.bigint.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2020.intl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.esnext.intl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/country-code.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/currency-code.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/iso-6391-language-code.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/iso-6393-language-code.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/data/countries.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/interfaces/currency.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/iso-6392b-language-code.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/constants/iso-6392t-language-code.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/interfaces/language.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/interfaces/country.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/common.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/array.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/collection.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/date.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/function.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/lang.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/math.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/number.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/object.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/seq.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/string.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/util.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/index.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/country.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/data/currencies.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/currency.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/currencies.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/data/languages.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/language.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/languages.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/classes/countries.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/src/index.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/globals.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/assert.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/async_hooks.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/buffer.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/child_process.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/cluster.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/console.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/constants.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/crypto.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/dgram.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/dns.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/domain.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/events.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/fs.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/http.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/http2.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/https.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/inspector.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/module.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/net.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/os.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/path.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/perf_hooks.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/process.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/punycode.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/querystring.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/readline.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/repl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/stream.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/string_decoder.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/timers.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/tls.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/trace_events.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/tty.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/url.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/util.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/v8.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/vm.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/worker_threads.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/zlib.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/base.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/ts3.2/util.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/ts3.2/globals.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/ts3.2/index.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/mocha/index.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/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/country-code.ts
Imported via '../constants/country-code' from file 'src/classes/countries.ts'
Imported via '../constants/country-code' from file 'src/interfaces/country.ts'
Imported via '../constants/country-code' from file 'src/classes/country.ts'
Imported via './constants/country-code' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/constants/currency-code.ts
Imported via '../constants/currency-code' from file 'src/classes/countries.ts'
Imported via '../constants/currency-code' from file 'src/interfaces/country.ts'
Imported via '../constants/currency-code' from file 'src/interfaces/currency.ts'
Imported via '../constants/currency-code' from file 'src/classes/country.ts'
Imported via '../constants/currency-code' from file 'src/classes/currencies.ts'
Imported via '../constants/currency-code' from file 'src/classes/currency.ts'
Imported via './constants/currency-code' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/constants/iso-6391-language-code.ts
Imported via '../constants/iso-6391-language-code' from file 'src/classes/countries.ts'
Imported via '../constants/iso-6391-language-code' from file 'src/interfaces/country.ts'
Imported via '../constants/iso-6391-language-code' from file 'src/interfaces/currency.ts'
Imported via '../constants/iso-6391-language-code' from file 'src/interfaces/language.ts'
Imported via '../constants/iso-6391-language-code' from file 'src/classes/country.ts'
Imported via '../constants/iso-6391-language-code' from file 'src/classes/currencies.ts'
Imported via '../constants/iso-6391-language-code' from file 'src/classes/currency.ts'
Imported via '../constants/iso-6391-language-code' from file 'src/classes/languages.ts'
Imported via '../constants/iso-6391-language-code' from file 'src/classes/language.ts'
Imported via './constants/iso-6391-language-code' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/constants/iso-6393-language-code.ts
Imported via '../constants/iso-6393-language-code' from file 'src/classes/countries.ts'
Imported via '../constants/iso-6393-language-code' from file 'src/interfaces/language.ts'
Imported via '../constants/iso-6393-language-code' from file 'src/classes/languages.ts'
Imported via '../constants/iso-6393-language-code' from file 'src/classes/language.ts'
Imported via './constants/iso-6393-language-code' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/data/countries.ts
Imported via '../data/countries' from file 'src/classes/countries.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/interfaces/currency.ts
Imported via './currency' from file 'src/interfaces/country.ts'
Imported via '../interfaces/currency' from file 'src/classes/countries.ts'
Imported via '../interfaces/currency' from file 'src/classes/country.ts'
Imported via '../interfaces/currency' from file 'src/classes/currencies.ts'
Imported via '../interfaces/currency' from file 'src/classes/currency.ts'
Imported via './interfaces/currency' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/constants/iso-6392b-language-code.ts
Imported via '../constants/iso-6392b-language-code' from file 'src/interfaces/language.ts'
Imported via '../constants/iso-6392b-language-code' from file 'src/classes/languages.ts'
Imported via '../constants/iso-6392b-language-code' from file 'src/classes/language.ts'
Imported via './constants/iso-6392b-language-code' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/constants/iso-6392t-language-code.ts
Imported via '../constants/iso-6392t-language-code' from file 'src/interfaces/language.ts'
Imported via '../constants/iso-6392t-language-code' from file 'src/classes/languages.ts'
Imported via '../constants/iso-6392t-language-code' from file 'src/classes/language.ts'
Imported via './constants/iso-6392t-language-code' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/interfaces/language.ts
Imported via './language' from file 'src/interfaces/country.ts'
Imported via '../interfaces/language' from file 'src/classes/country.ts'
Imported via '../interfaces/language' from file 'src/classes/languages.ts'
Imported via '../interfaces/language' from file 'src/classes/language.ts'
Imported via './interfaces/language' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/interfaces/country.ts
Imported via '../interfaces/country' from file 'src/classes/countries.ts'
Imported via '../interfaces/country' from file 'src/classes/country.ts'
Imported via './interfaces/country' 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/classes/country.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/classes/currency.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
Imported via 'lodash' from file 'src/classes/language.ts' with packageId '@types/lodash/index.d.ts@4.14.200'
src/classes/country.ts
Imported via './country' from file 'src/classes/countries.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/data/currencies.ts
Imported via '../data/currencies' from file 'src/classes/currencies.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/classes/currency.ts
Imported via './currency' from file 'src/classes/currencies.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/classes/currencies.ts
Imported via './currencies' from file 'src/classes/countries.ts'
Imported via './classes/currencies' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/data/languages.ts
Imported via '../data/languages' from file 'src/classes/languages.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/classes/language.ts
Imported via './language' from file 'src/classes/languages.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/classes/languages.ts
Imported via './languages' from file 'src/classes/countries.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/classes/countries.ts
Imported via './classes/countries' from file 'src/index.ts'
Matched by include pattern 'src' in 'tsconfig.json'
src/index.ts
Matched by include pattern 'src' in 'tsconfig.json'
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 43 -----------------------------------------------
Info 44 event:
{"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json"}}
Info 45 event:
{"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"6003777e176e3ac57a6f7918d903698d5e91a796636936158d234fa7b3352b8b","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":19,"tsSize":212365,"tsx":0,"tsxSize":0,"dts":87,"dtsSize":1628631,"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,"experimentalDecorators":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 46 event:
{"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/test/global.d.ts","configFile":"/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json","diagnostics":[]}}
Info 47 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/test/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root
Info 48 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/test/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root
Info 49 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root
Info 50 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root
Info 51 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root
Info 52 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root
Info 53 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root
Info 54 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root
Info 55 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root
Info 56 Starting updateGraphWorker: Project: /dev/null/inferredProject1*
Info 57 DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 58 Elapsed:: 0.030957698822021484ms DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 59 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution
Info 60 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/chai/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution
Info 61 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/mocha/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution
Info 62 FileWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution
Info 63 DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/test/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
Info 64 Elapsed:: 0.31874990463256836ms DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/test/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
Info 65 DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
Info 66 Elapsed:: 0.10991573333740234ms DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
Info 67 DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
Info 68 Elapsed:: 0.030333995819091797ms DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
Info 69 DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
Info 70 Elapsed:: 0.030375003814697266ms DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
Info 71 DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
Info 72 Elapsed:: 0.022957801818847656ms DirectoryWatcher:: Added:: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots
Info 73 Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed: 256.2609157562256ms
Info 74 Project '/dev/null/inferredProject1*' (Inferred)
Info 75 Files (92)
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es5.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2016.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2017.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2018.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.dom.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.webworker.importscripts.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.scripthost.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.core.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.collection.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.generator.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.iterable.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.promise.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.proxy.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.reflect.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.symbol.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2016.array.include.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2017.object.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2017.string.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2017.intl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2018.intl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2018.promise.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2018.regexp.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2020.bigint.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.es2020.intl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/typescript/lib/lib.esnext.intl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/chai/index.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/test/global.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/common.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/array.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/collection.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/date.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/function.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/lang.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/math.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/number.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/object.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/seq.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/string.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/common/util.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/lodash/index.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/mocha/index.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/globals.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/assert.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/async_hooks.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/buffer.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/child_process.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/cluster.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/console.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/constants.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/crypto.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/dgram.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/dns.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/domain.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/events.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/fs.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/http.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/http2.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/https.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/inspector.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/module.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/net.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/os.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/path.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/perf_hooks.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/process.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/punycode.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/querystring.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/readline.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/repl.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/stream.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/string_decoder.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/timers.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/tls.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/trace_events.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/tty.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/url.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/util.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/v8.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/vm.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/worker_threads.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/zlib.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/base.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/ts3.2/util.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/ts3.2/globals.d.ts
/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/@types/node/ts3.2/index.d.ts
../node_modules/typescript/lib/lib.d.ts
Default library for target 'es5'
../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.d.ts'
../node_modules/typescript/lib/lib.es2015.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'
../node_modules/typescript/lib/lib.es2017.d.ts
Library referenced via 'es2017' from file '../node_modules/typescript/lib/lib.es2018.d.ts'
../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.dom.d.ts
Library referenced via 'dom' from file '../node_modules/typescript/lib/lib.d.ts'
../node_modules/typescript/lib/lib.webworker.importscripts.d.ts
Library referenced via 'webworker.importscripts' from file '../node_modules/typescript/lib/lib.d.ts'
../node_modules/typescript/lib/lib.scripthost.d.ts
Library referenced via 'scripthost' from file '../node_modules/typescript/lib/lib.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'
../node_modules/typescript/lib/lib.es2015.collection.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'
../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'
../node_modules/typescript/lib/lib.es2015.promise.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'
../node_modules/typescript/lib/lib.es2015.reflect.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'
../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'
../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'
../node_modules/typescript/lib/lib.es2017.object.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'
../node_modules/typescript/lib/lib.es2017.string.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'
../node_modules/typescript/lib/lib.es2017.typedarrays.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'
../node_modules/@types/chai/index.d.ts
Type library referenced via 'chai' from file 'global.d.ts' with packageId '@types/chai/index.d.ts@4.3.9'
global.d.ts
Root file specified for compilation
../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
Entry point for implicit type library 'lodash' 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'
../node_modules/@types/mocha/index.d.ts
Entry point for implicit type library 'mocha' with packageId '@types/mocha/index.d.ts@5.2.3'
../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 for implicit type library 'node' with packageId '@types/node/ts3.2/index.d.ts@12.7.0'
Info 76 -----------------------------------------------
Info 77 FileWatcher:: Added:: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/package.json 250 undefined WatchType: package.json file
Info 78 Project '/Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json' (Configured)
Files (106)
-----------------------------------------------
Project '/dev/null/inferredProject1*' (Inferred)
Files (92)
-----------------------------------------------
Open files:
FileName: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/test/global.d.ts ProjectRootPath: undefined
Projects: /dev/null/inferredProject1*
Info 79 Starting updateGraphWorker: Project: /dev/null/inferredProject1*
Info 80 Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Completely Elapsed: 4.6832499504089355ms
Info 81 Different program with same set of files
Info 82 response:
{"seq":0,"type":"response","command":"semanticDiagnosticsSync","request_seq":3,"success":true,"performanceData":{"updateGraphDurationMs":4.6832499504089355},"body":[]}
Info 83 response:
{"seq":0,"type":"response","command":"syntacticDiagnosticsSync","request_seq":4,"success":true,"body":[]}
Info 84 response:
{"seq":0,"type":"response","command":"suggestionDiagnosticsSync","request_seq":5,"success":true,"body":[]}
Info 85 FileWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/package.json 1:: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/package.json 250 undefined WatchType: package.json file
Info 86 Elapsed:: 0.394625186920166ms FileWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/package.json 1:: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/package.json 250 undefined WatchType: package.json file
Info 87 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 88 Elapsed:: 0.2883749008178711ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 89 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 90 Elapsed:: 0.3850827217102051ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 91 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 92 Elapsed:: 0.02891683578491211ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 93 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 94 Elapsed:: 0.01908397674560547ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 95 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 96 Elapsed:: 0.02941608428955078ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 97 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 98 Elapsed:: 0.033833980560302734ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 99 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 100 Elapsed:: 0.050167083740234375ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 101 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 102 Elapsed:: 0.04154205322265625ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 103 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 104 Elapsed:: 0.01691722869873047ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 105 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.ts.1285435695 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 106 Elapsed:: 0.011624813079833984ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.ts.1285435695 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 107 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.ts.1285435695 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 108 Elapsed:: 0.018707752227783203ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.ts.1285435695 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 109 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.ts.1285435695 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 110 Elapsed:: 0.013332843780517578ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.ts.1285435695 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 111 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 112 Elapsed:: 0.009707927703857422ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 113 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 114 Elapsed:: 0.018958091735839844ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 115 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 116 Elapsed:: 0.012583255767822266ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-882d2f4029aaed5b9861201487a7b7411e564eccd805ffb806a596c8522c7e8b.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 117 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 118 Elapsed:: 0.046000003814697266ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 119 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 120 Elapsed:: 0.06383275985717773ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 121 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 122 Elapsed:: 0.02512502670288086ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 123 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.ts.1924721167 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 124 Elapsed:: 0.012875080108642578ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.ts.1924721167 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 125 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.ts.1924721167 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 126 Elapsed:: 0.01979207992553711ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.ts.1924721167 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 127 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.ts.1924721167 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 128 Elapsed:: 0.04341602325439453ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.ts.1924721167 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 129 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 130 Elapsed:: 0.014207839965820312ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 131 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 132 Elapsed:: 0.021832942962646484ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 133 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 134 Elapsed:: 0.014374732971191406ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/iso-6391-language-code-d2ef0b58272b5f5708e928c36850d08b3399daf5b06119a01bea2bc3d4d41411.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 135 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 136 Elapsed:: 0.04504108428955078ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 137 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 138 Elapsed:: 0.03545808792114258ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 139 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 140 Elapsed:: 0.015458106994628906ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 141 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.ts.2663925617 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 142 Elapsed:: 0.013165950775146484ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.ts.2663925617 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 143 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.ts.2663925617 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 144 Elapsed:: 0.019625186920166016ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.ts.2663925617 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 145 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.ts.2663925617 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 146 Elapsed:: 0.013709068298339844ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.ts.2663925617 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 147 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 148 Elapsed:: 0.012207984924316406ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 149 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 150 Elapsed:: 0.018792152404785156ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 151 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 152 Elapsed:: 0.013041973114013672ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/countries-de43b31476744ac4c8d35912f01c22b1cf03ff080f50976ecd4477f47580b111.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 153 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 154 Elapsed:: 0.05645942687988281ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 155 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 156 Elapsed:: 0.04370832443237305ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 157 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 158 Elapsed:: 0.020999908447265625ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 159 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.ts.462337300 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 160 Elapsed:: 0.01862478256225586ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.ts.462337300 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 161 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.ts.462337300 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 162 Elapsed:: 0.04808330535888672ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.ts.462337300 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 163 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.ts.462337300 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 164 Elapsed:: 0.031084060668945312ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.ts.462337300 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 165 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 166 Elapsed:: 0.019374847412109375ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 167 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 168 Elapsed:: 0.028500080108642578ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 169 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 170 Elapsed:: 0.019041061401367188ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/country-d3b64088f6fcafd71a444ac2326e7619e160ed5c876e1ffa6ded02c5b7fcb3b6.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 171 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 172 Elapsed:: 0.040708065032958984ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 173 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 174 Elapsed:: 0.027666091918945312ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 175 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 176 Elapsed:: 0.027249813079833984ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 177 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.ts.961098035 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 178 Elapsed:: 0.008249759674072266ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.ts.961098035 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 179 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.ts.961098035 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 180 Elapsed:: 0.01262521743774414ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.ts.961098035 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 181 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.ts.961098035 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 182 Elapsed:: 0.008708000183105469ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.ts.961098035 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 183 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 184 Elapsed:: 0.007708072662353516ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.ts :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 185 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 186 Elapsed:: 0.01154184341430664ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 187 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 188 Elapsed:: 0.012332916259765625ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-8c411b2b7423329ace97d797aa6f8aaa067b0840208109cd938d18791ea0ad1c.ts :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 189 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/currencies-47ae65c7d4d4e2663f0f989e41160375362e3b36308c16649f92f4f6175143de.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 190 Elapsed:: 0.007625102996826172ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/currencies-47ae65c7d4d4e2663f0f989e41160375362e3b36308c16649f92f4f6175143de.map :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 191 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-47ae65c7d4d4e2663f0f989e41160375362e3b36308c16649f92f4f6175143de.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 192 Elapsed:: 0.011625289916992188ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-47ae65c7d4d4e2663f0f989e41160375362e3b36308c16649f92f4f6175143de.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 193 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-47ae65c7d4d4e2663f0f989e41160375362e3b36308c16649f92f4f6175143de.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 194 Elapsed:: 0.008208751678466797ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-47ae65c7d4d4e2663f0f989e41160375362e3b36308c16649f92f4f6175143de.map :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations
Info 195 DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/currencies-47ae65c7d4d4e2663f0f989e41160375362e3b36308c16649f92f4f6175143de.ts.1511866507 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 196 Elapsed:: 0.007708072662353516ms DirectoryWatcher:: Triggered with /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules/.cache/nyc/currencies-47ae65c7d4d4e2663f0f989e41160375362e3b36308c16649f92f4f6175143de.ts.1511866507 :: WatchInfo: /users/sylvainestevez/documents/code projects/npm modules/@tselect/countries/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 197 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-47ae65c7d4d4e2663f0f989e41160375362e3b36308c16649f92f4f6175143de.ts.1511866507 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 198 Elapsed:: 0.011417388916015625ms DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-47ae65c7d4d4e2663f0f989e41160375362e3b36308c16649f92f4f6175143de.ts.1511866507 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/tsconfig.json WatchType: Failed Lookup Locations
Info 199 DirectoryWatcher:: Triggered with /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules/.cache/nyc/currencies-47ae65c7d4d4e2663f0f989e41160375362e3b36308c16649f92f4f6175143de.ts.1511866507 :: WatchInfo: /Users/sylvainestevez/Documents/Code Projects/NPM Modules/@tselect/countries/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations