-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundleInfo.json
More file actions
9297 lines (9297 loc) · 322 KB
/
Copy pathbundleInfo.json
File metadata and controls
9297 lines (9297 loc) · 322 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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
{
"graph": {
"===anonymous1===": [
"require"
],
"===anonymous2===": [
"vs/editor/editor.main",
"vs/css",
"vs/base/common/worker/simpleWorker",
"vs/editor/common/services/editorSimpleWorker"
],
"vs/editor/editor.main": [
"require",
"exports",
"vs/editor/editor.api",
"vs/editor/editor.all",
"vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard",
"vs/editor/standalone/browser/inspectTokens/inspectTokens",
"vs/editor/standalone/browser/quickAccess/standaloneHelpQuickAccess",
"vs/editor/standalone/browser/quickAccess/standaloneGotoLineQuickAccess",
"vs/editor/standalone/browser/quickAccess/standaloneGotoSymbolQuickAccess",
"vs/editor/standalone/browser/quickAccess/standaloneCommandsQuickAccess",
"vs/editor/standalone/browser/referenceSearch/standaloneReferenceSearch",
"vs/editor/standalone/browser/toggleHighContrast/toggleHighContrast"
],
"vs/css": [
"require",
"exports"
],
"vs/base/common/worker/simpleWorker": [
"require",
"exports",
"vs/base/common/errors",
"vs/base/common/event",
"vs/base/common/lifecycle",
"vs/base/common/network",
"vs/base/common/platform",
"vs/base/common/strings"
],
"vs/editor/common/services/editorSimpleWorker": [
"require",
"exports",
"vs/base/common/diff/diff",
"vs/editor/common/core/range",
"vs/editor/common/languages/linkComputer",
"vs/editor/common/languages/supports/inplaceReplaceSupport",
"vs/editor/common/services/editorBaseApi",
"vs/editor/common/services/editorWorkerHost",
"vs/base/common/stopwatch",
"vs/editor/common/services/unicodeTextModelHighlighter",
"vs/editor/common/diff/linesDiffComputers",
"vs/base/common/objects",
"vs/base/common/network",
"vs/editor/common/languages/defaultDocumentColorsComputer",
"vs/editor/common/services/findSectionHeaders",
"vs/editor/common/services/textModelSync/textModelSync.impl"
],
"vs/editor/editor.api": [
"require",
"exports",
"vs/editor/common/config/editorOptions",
"vs/editor/common/services/editorBaseApi",
"vs/editor/standalone/browser/standaloneEditor",
"vs/editor/standalone/browser/standaloneLanguages",
"vs/editor/contrib/format/browser/format"
],
"vs/editor/editor.all": [
"require",
"exports",
"vs/editor/browser/coreCommands",
"vs/editor/browser/widget/codeEditor/codeEditorWidget",
"vs/editor/browser/widget/diffEditor/diffEditor.contribution",
"vs/editor/contrib/anchorSelect/browser/anchorSelect",
"vs/editor/contrib/bracketMatching/browser/bracketMatching",
"vs/editor/contrib/caretOperations/browser/caretOperations",
"vs/editor/contrib/caretOperations/browser/transpose",
"vs/editor/contrib/clipboard/browser/clipboard",
"vs/editor/contrib/codeAction/browser/codeActionContributions",
"vs/editor/contrib/codelens/browser/codelensController",
"vs/editor/contrib/colorPicker/browser/colorContributions",
"vs/editor/contrib/colorPicker/browser/standaloneColorPickerActions",
"vs/editor/contrib/comment/browser/comment",
"vs/editor/contrib/contextmenu/browser/contextmenu",
"vs/editor/contrib/cursorUndo/browser/cursorUndo",
"vs/editor/contrib/dnd/browser/dnd",
"vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution",
"vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorContribution",
"vs/editor/contrib/find/browser/findController",
"vs/editor/contrib/folding/browser/folding",
"vs/editor/contrib/fontZoom/browser/fontZoom",
"vs/editor/contrib/format/browser/formatActions",
"vs/editor/contrib/documentSymbols/browser/documentSymbols",
"vs/editor/contrib/inlineCompletions/browser/inlineCompletions.contribution",
"vs/editor/contrib/inlineProgress/browser/inlineProgress",
"vs/editor/contrib/gotoSymbol/browser/goToCommands",
"vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition",
"vs/editor/contrib/gotoError/browser/gotoError",
"vs/editor/contrib/hover/browser/hoverContribution",
"vs/editor/contrib/indentation/browser/indentation",
"vs/editor/contrib/inlayHints/browser/inlayHintsContribution",
"vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace",
"vs/editor/contrib/lineSelection/browser/lineSelection",
"vs/editor/contrib/linesOperations/browser/linesOperations",
"vs/editor/contrib/linkedEditing/browser/linkedEditing",
"vs/editor/contrib/links/browser/links",
"vs/editor/contrib/longLinesHelper/browser/longLinesHelper",
"vs/editor/contrib/multicursor/browser/multicursor",
"vs/editor/contrib/inlineEdit/browser/inlineEdit.contribution",
"vs/editor/contrib/inlineEdits/browser/inlineEdits.contribution",
"vs/editor/contrib/parameterHints/browser/parameterHints",
"vs/editor/contrib/placeholderText/browser/placeholderText.contribution",
"vs/editor/contrib/rename/browser/rename",
"vs/editor/contrib/sectionHeaders/browser/sectionHeaders",
"vs/editor/contrib/semanticTokens/browser/documentSemanticTokens",
"vs/editor/contrib/semanticTokens/browser/viewportSemanticTokens",
"vs/editor/contrib/smartSelect/browser/smartSelect",
"vs/editor/contrib/snippet/browser/snippetController2",
"vs/editor/contrib/stickyScroll/browser/stickyScrollContribution",
"vs/editor/contrib/suggest/browser/suggestController",
"vs/editor/contrib/suggest/browser/suggestInlineCompletions",
"vs/editor/contrib/tokenization/browser/tokenization",
"vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode",
"vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter",
"vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators",
"vs/editor/contrib/wordHighlighter/browser/wordHighlighter",
"vs/editor/contrib/wordOperations/browser/wordOperations",
"vs/editor/contrib/wordPartOperations/browser/wordPartOperations",
"vs/editor/contrib/readOnlyMessage/browser/contribution",
"vs/editor/contrib/diffEditorBreadcrumbs/browser/contribution",
"vs/editor/common/standaloneStrings",
"vs/base/browser/ui/codicons/codiconStyles"
],
"vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard": [
"require",
"exports",
"vs/base/browser/dom",
"vs/base/common/lifecycle",
"vs/editor/browser/editorExtensions",
"vs/base/common/platform",
"vs/css!vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard"
],
"vs/editor/standalone/browser/inspectTokens/inspectTokens": [
"require",
"exports",
"vs/base/browser/dom",
"vs/base/common/color",
"vs/base/common/lifecycle",
"vs/editor/browser/editorExtensions",
"vs/editor/common/languages",
"vs/editor/common/encodedTokenAttributes",
"vs/editor/common/languages/nullTokenize",
"vs/editor/common/languages/language",
"vs/editor/standalone/common/standaloneTheme",
"vs/editor/common/standaloneStrings",
"vs/css!vs/editor/standalone/browser/inspectTokens/inspectTokens"
],
"vs/editor/standalone/browser/quickAccess/standaloneHelpQuickAccess": [
"require",
"exports",
"vs/platform/registry/common/platform",
"vs/platform/quickinput/common/quickAccess",
"vs/editor/common/standaloneStrings",
"vs/platform/quickinput/browser/helpQuickAccess"
],
"vs/editor/standalone/browser/quickAccess/standaloneGotoLineQuickAccess": [
"require",
"exports",
"vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess",
"vs/platform/registry/common/platform",
"vs/platform/quickinput/common/quickAccess",
"vs/editor/browser/services/codeEditorService",
"vs/editor/common/standaloneStrings",
"vs/base/common/event",
"vs/editor/browser/editorExtensions",
"vs/editor/common/editorContextKeys",
"vs/platform/quickinput/common/quickInput"
],
"vs/editor/standalone/browser/quickAccess/standaloneGotoSymbolQuickAccess": [
"require",
"exports",
"vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess",
"vs/platform/registry/common/platform",
"vs/platform/quickinput/common/quickAccess",
"vs/editor/browser/services/codeEditorService",
"vs/editor/common/standaloneStrings",
"vs/base/common/event",
"vs/editor/browser/editorExtensions",
"vs/editor/common/editorContextKeys",
"vs/platform/quickinput/common/quickInput",
"vs/editor/contrib/documentSymbols/browser/outlineModel",
"vs/editor/common/services/languageFeatures",
"vs/base/browser/ui/codicons/codiconStyles",
"vs/editor/contrib/symbolIcons/browser/symbolIcons"
],
"vs/editor/standalone/browser/quickAccess/standaloneCommandsQuickAccess": [
"require",
"exports",
"vs/platform/registry/common/platform",
"vs/platform/quickinput/common/quickAccess",
"vs/editor/common/standaloneStrings",
"vs/editor/browser/services/codeEditorService",
"vs/editor/contrib/quickAccess/browser/commandsQuickAccess",
"vs/platform/instantiation/common/instantiation",
"vs/platform/keybinding/common/keybinding",
"vs/platform/commands/common/commands",
"vs/platform/telemetry/common/telemetry",
"vs/platform/dialogs/common/dialogs",
"vs/editor/browser/editorExtensions",
"vs/editor/common/editorContextKeys",
"vs/platform/quickinput/common/quickInput"
],
"vs/editor/standalone/browser/referenceSearch/standaloneReferenceSearch": [
"require",
"exports",
"vs/editor/browser/editorExtensions",
"vs/editor/browser/services/codeEditorService",
"vs/editor/contrib/gotoSymbol/browser/peek/referencesController",
"vs/platform/configuration/common/configuration",
"vs/platform/contextkey/common/contextkey",
"vs/platform/instantiation/common/instantiation",
"vs/platform/notification/common/notification",
"vs/platform/storage/common/storage"
],
"vs/editor/standalone/browser/toggleHighContrast/toggleHighContrast": [
"require",
"exports",
"vs/editor/browser/editorExtensions",
"vs/editor/standalone/common/standaloneTheme",
"vs/editor/common/standaloneStrings",
"vs/platform/theme/common/theme",
"vs/editor/standalone/browser/standaloneThemeService"
],
"vs/base/common/diff/diff": [
"require",
"exports",
"vs/base/common/diff/diffChange",
"vs/base/common/hash"
],
"vs/editor/common/core/range": [
"require",
"exports",
"vs/editor/common/core/position"
],
"vs/editor/common/languages/linkComputer": [
"require",
"exports",
"vs/editor/common/core/characterClassifier"
],
"vs/editor/common/languages/supports/inplaceReplaceSupport": [
"require",
"exports"
],
"vs/editor/common/services/editorBaseApi": [
"require",
"exports",
"vs/base/common/cancellation",
"vs/base/common/event",
"vs/base/common/keyCodes",
"vs/base/common/uri",
"vs/editor/common/core/position",
"vs/editor/common/core/range",
"vs/editor/common/core/selection",
"vs/editor/common/languages",
"vs/editor/common/standalone/standaloneEnums"
],
"vs/editor/common/services/editorWorkerHost": [
"require",
"exports"
],
"vs/base/common/stopwatch": [
"require",
"exports"
],
"vs/editor/common/services/unicodeTextModelHighlighter": [
"require",
"exports",
"vs/editor/common/core/range",
"vs/editor/common/model/textModelSearch",
"vs/base/common/strings",
"vs/base/common/assert",
"vs/editor/common/core/wordHelper"
],
"vs/editor/common/diff/linesDiffComputers": [
"require",
"exports",
"vs/editor/common/diff/legacyLinesDiffComputer",
"vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer"
],
"vs/base/common/objects": [
"require",
"exports",
"vs/base/common/types"
],
"vs/base/common/network": [
"require",
"exports",
"vs/base/common/errors",
"vs/base/common/platform",
"vs/base/common/strings",
"vs/base/common/uri",
"vs/base/common/path"
],
"vs/editor/common/languages/defaultDocumentColorsComputer": [
"require",
"exports",
"vs/base/common/color"
],
"vs/editor/common/services/findSectionHeaders": [
"require",
"exports"
],
"vs/editor/common/services/textModelSync/textModelSync.impl": [
"require",
"exports",
"vs/base/common/async",
"vs/base/common/lifecycle",
"vs/base/common/uri",
"vs/editor/common/core/position",
"vs/editor/common/core/range",
"vs/editor/common/core/wordHelper",
"vs/editor/common/model/mirrorTextModel"
],
"vs/base/common/errors": [
"require",
"exports"
],
"vs/base/common/event": [
"require",
"exports",
"vs/base/common/errors",
"vs/base/common/functional",
"vs/base/common/lifecycle",
"vs/base/common/linkedList",
"vs/base/common/stopwatch"
],
"vs/base/common/lifecycle": [
"require",
"exports",
"vs/base/common/functional",
"vs/base/common/iterator"
],
"vs/base/common/platform": [
"require",
"exports",
"vs/nls"
],
"vs/base/common/strings": [
"require",
"exports",
"vs/base/common/cache",
"vs/base/common/lazy"
],
"vs/editor/browser/coreCommands": [
"require",
"exports",
"vs/nls",
"vs/base/browser/browser",
"vs/base/common/types",
"vs/base/browser/ui/aria/aria",
"vs/editor/browser/editorExtensions",
"vs/editor/browser/services/codeEditorService",
"vs/editor/common/cursor/cursorColumnSelection",
"vs/editor/common/cursorCommon",
"vs/editor/common/cursor/cursorDeleteOperations",
"vs/editor/common/cursor/cursorMoveCommands",
"vs/editor/common/cursor/cursorTypeOperations",
"vs/editor/common/core/position",
"vs/editor/common/core/range",
"vs/editor/common/editorContextKeys",
"vs/platform/contextkey/common/contextkey",
"vs/platform/keybinding/common/keybindingsRegistry",
"vs/base/browser/dom",
"vs/editor/common/cursor/cursorTypeEditOperations"
],
"vs/editor/browser/widget/codeEditor/codeEditorWidget": [
"require",
"exports",
"vs/base/browser/dom",
"vs/base/common/errors",
"vs/base/common/event",
"vs/base/common/lifecycle",
"vs/base/common/network",
"vs/editor/browser/config/domFontInfo",
"vs/editor/browser/config/editorConfiguration",
"vs/editor/browser/config/tabFocus",
"vs/editor/browser/editorExtensions",
"vs/editor/browser/services/codeEditorService",
"vs/editor/browser/view",
"vs/editor/browser/view/domLineBreaksComputer",
"vs/editor/browser/view/viewUserInputEvents",
"vs/editor/browser/widget/codeEditor/codeEditorContributions",
"vs/editor/common/config/editorOptions",
"vs/editor/common/core/cursorColumns",
"vs/editor/common/core/editorColorRegistry",
"vs/editor/common/core/position",
"vs/editor/common/core/range",
"vs/editor/common/core/selection",
"vs/editor/common/cursor/cursorWordOperations",
"vs/editor/common/editorAction",
"vs/editor/common/editorCommon",
"vs/editor/common/editorContextKeys",
"vs/editor/common/languages/languageConfigurationRegistry",
"vs/editor/common/model/textModel",
"vs/editor/common/services/languageFeatures",
"vs/editor/common/viewModel/monospaceLineBreaksComputer",
"vs/editor/common/viewModel/viewModelImpl",
"vs/nls",
"vs/platform/accessibility/common/accessibility",
"vs/platform/commands/common/commands",
"vs/platform/contextkey/common/contextkey",
"vs/platform/instantiation/common/instantiation",
"vs/platform/instantiation/common/serviceCollection",
"vs/platform/notification/common/notification",
"vs/platform/theme/common/colorRegistry",
"vs/platform/theme/common/themeService",
"vs/platform/actions/common/actions",
"vs/editor/browser/services/markerDecorations",
"vs/css!vs/editor/browser/widget/codeEditor/editor"
],
"vs/editor/browser/widget/diffEditor/diffEditor.contribution": [
"require",
"exports",
"vs/base/common/codicons",
"vs/editor/browser/widget/diffEditor/commands",
"vs/editor/common/editorContextKeys",
"vs/nls",
"vs/platform/actions/common/actions",
"vs/platform/commands/common/commands",
"vs/platform/contextkey/common/contextkey",
"vs/editor/browser/widget/diffEditor/registrations.contribution"
],
"vs/editor/contrib/anchorSelect/browser/anchorSelect": [
"require",
"exports",
"vs/base/browser/ui/aria/aria",
"vs/base/common/htmlContent",
"vs/base/common/keyCodes",
"vs/editor/browser/editorExtensions",
"vs/editor/common/core/selection",
"vs/editor/common/editorContextKeys",
"vs/nls",
"vs/platform/contextkey/common/contextkey",
"vs/css!vs/editor/contrib/anchorSelect/browser/anchorSelect"
],
"vs/editor/contrib/bracketMatching/browser/bracketMatching": [
"require",
"exports",
"vs/base/common/async",
"vs/base/common/lifecycle",
"vs/editor/browser/editorExtensions",
"vs/editor/common/core/position",
"vs/editor/common/core/range",
"vs/editor/common/core/selection",
"vs/editor/common/editorContextKeys",
"vs/editor/common/model",
"vs/editor/common/model/textModel",
"vs/nls",
"vs/platform/actions/common/actions",
"vs/platform/theme/common/colorRegistry",
"vs/platform/theme/common/themeService",
"vs/css!vs/editor/contrib/bracketMatching/browser/bracketMatching"
],
"vs/editor/contrib/caretOperations/browser/caretOperations": [
"require",
"exports",
"vs/editor/browser/editorExtensions",
"vs/editor/common/editorContextKeys",
"vs/editor/contrib/caretOperations/browser/moveCaretCommand",
"vs/nls"
],
"vs/editor/contrib/caretOperations/browser/transpose": [
"require",
"exports",
"vs/editor/browser/editorExtensions",
"vs/editor/common/commands/replaceCommand",
"vs/editor/common/cursor/cursorMoveOperations",
"vs/editor/common/core/range",
"vs/editor/common/editorContextKeys",
"vs/nls"
],
"vs/editor/contrib/clipboard/browser/clipboard": [
"require",
"exports",
"vs/base/browser/browser",
"vs/base/browser/dom",
"vs/base/common/platform",
"vs/editor/browser/controller/textAreaInput",
"vs/editor/browser/editorExtensions",
"vs/editor/browser/services/codeEditorService",
"vs/editor/common/editorContextKeys",
"vs/editor/contrib/dropOrPasteInto/browser/copyPasteController",
"vs/nls",
"vs/platform/actions/common/actions",
"vs/platform/clipboard/common/clipboardService",
"vs/platform/contextkey/common/contextkey"
],
"vs/editor/contrib/codeAction/browser/codeActionContributions": [
"require",
"exports",
"vs/editor/browser/editorExtensions",
"vs/editor/common/config/editorConfigurationSchema",
"vs/editor/contrib/codeAction/browser/codeActionCommands",
"vs/editor/contrib/codeAction/browser/codeActionController",
"vs/editor/contrib/codeAction/browser/lightBulbWidget",
"vs/nls",
"vs/platform/configuration/common/configurationRegistry",
"vs/platform/registry/common/platform"
],
"vs/editor/contrib/codelens/browser/codelensController": [
"require",
"exports",
"vs/base/common/async",
"vs/base/common/errors",
"vs/base/common/lifecycle",
"vs/editor/browser/stableEditorScroll",
"vs/editor/browser/editorExtensions",
"vs/editor/common/config/editorOptions",
"vs/editor/common/editorContextKeys",
"vs/editor/contrib/codelens/browser/codelens",
"vs/editor/contrib/codelens/browser/codeLensCache",
"vs/editor/contrib/codelens/browser/codelensWidget",
"vs/nls",
"vs/platform/commands/common/commands",
"vs/platform/notification/common/notification",
"vs/platform/quickinput/common/quickInput",
"vs/editor/common/services/languageFeatureDebounce",
"vs/editor/common/services/languageFeatures"
],
"vs/editor/contrib/colorPicker/browser/colorContributions": [
"require",
"exports",
"vs/base/common/lifecycle",
"vs/editor/browser/editorExtensions",
"vs/editor/common/core/range",
"vs/editor/contrib/colorPicker/browser/colorDetector",
"vs/editor/contrib/colorPicker/browser/colorHoverParticipant",
"vs/editor/contrib/hover/browser/contentHoverController2",
"vs/editor/contrib/hover/browser/hoverTypes"
],
"vs/editor/contrib/colorPicker/browser/standaloneColorPickerActions": [
"require",
"exports",
"vs/editor/browser/editorExtensions",
"vs/nls",
"vs/editor/contrib/colorPicker/browser/standaloneColorPickerWidget",
"vs/editor/common/editorContextKeys",
"vs/platform/actions/common/actions",
"vs/css!vs/editor/contrib/colorPicker/browser/colorPicker"
],
"vs/editor/contrib/comment/browser/comment": [
"require",
"exports",
"vs/base/common/keyCodes",
"vs/editor/browser/editorExtensions",
"vs/editor/common/core/range",
"vs/editor/common/editorContextKeys",
"vs/editor/common/languages/languageConfigurationRegistry",
"vs/editor/contrib/comment/browser/blockCommentCommand",
"vs/editor/contrib/comment/browser/lineCommentCommand",
"vs/nls",
"vs/platform/actions/common/actions"
],
"vs/editor/contrib/contextmenu/browser/contextmenu": [
"require",
"exports",
"vs/base/browser/dom",
"vs/base/browser/ui/actionbar/actionViewItems",
"vs/base/common/actions",
"vs/base/common/lifecycle",
"vs/base/common/platform",
"vs/editor/browser/editorExtensions",
"vs/editor/common/editorContextKeys",
"vs/nls",
"vs/platform/actions/common/actions",
"vs/platform/contextkey/common/contextkey",
"vs/platform/contextview/browser/contextView",
"vs/platform/keybinding/common/keybinding",
"vs/platform/configuration/common/configuration",
"vs/platform/workspace/common/workspace"
],
"vs/editor/contrib/cursorUndo/browser/cursorUndo": [
"require",
"exports",
"vs/base/common/lifecycle",
"vs/editor/browser/editorExtensions",
"vs/editor/common/editorContextKeys",
"vs/nls"
],
"vs/editor/contrib/dnd/browser/dnd": [
"require",
"exports",
"vs/base/common/lifecycle",
"vs/base/common/platform",
"vs/editor/browser/editorExtensions",
"vs/editor/common/core/position",
"vs/editor/common/core/range",
"vs/editor/common/core/selection",
"vs/editor/common/model/textModel",
"vs/editor/contrib/dnd/browser/dragAndDropCommand",
"vs/css!vs/editor/contrib/dnd/browser/dnd"
],
"vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution": [
"require",
"exports",
"vs/base/common/hierarchicalKind",
"vs/editor/browser/editorExtensions",
"vs/editor/common/editorContextKeys",
"vs/editor/common/editorFeatures",
"vs/editor/contrib/dropOrPasteInto/browser/copyPasteController",
"vs/editor/contrib/dropOrPasteInto/browser/defaultProviders",
"vs/nls"
],
"vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorContribution": [
"require",
"exports",
"vs/editor/browser/editorExtensions",
"vs/editor/common/config/editorConfigurationSchema",
"vs/editor/common/editorFeatures",
"vs/editor/contrib/dropOrPasteInto/browser/defaultProviders",
"vs/nls",
"vs/platform/configuration/common/configurationRegistry",
"vs/platform/registry/common/platform",
"vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController"
],
"vs/editor/contrib/find/browser/findController": [
"require",
"exports",
"vs/base/common/async",
"vs/base/common/lifecycle",
"vs/base/common/strings",
"vs/editor/browser/editorExtensions",
"vs/editor/common/core/editorColorRegistry",
"vs/editor/common/editorContextKeys",
"vs/editor/common/model",
"vs/editor/contrib/find/browser/findModel",
"vs/editor/contrib/find/browser/findOptionsWidget",
"vs/editor/contrib/find/browser/findState",
"vs/editor/contrib/find/browser/findWidget",
"vs/nls",
"vs/platform/actions/common/actions",
"vs/platform/clipboard/common/clipboardService",
"vs/platform/contextkey/common/contextkey",
"vs/platform/contextview/browser/contextView",
"vs/platform/keybinding/common/keybinding",
"vs/platform/notification/common/notification",
"vs/platform/quickinput/common/quickInput",
"vs/platform/storage/common/storage",
"vs/platform/theme/common/themeService",
"vs/platform/hover/browser/hover"
],
"vs/editor/contrib/folding/browser/folding": [
"require",
"exports",
"vs/base/common/async",
"vs/base/common/cancellation",
"vs/base/common/errors",
"vs/base/common/keyCodes",
"vs/base/common/lifecycle",
"vs/base/common/strings",
"vs/base/common/types",
"vs/editor/browser/stableEditorScroll",
"vs/editor/browser/editorExtensions",
"vs/editor/common/editorContextKeys",
"vs/editor/common/languages",
"vs/editor/common/languages/languageConfigurationRegistry",
"vs/editor/contrib/folding/browser/foldingModel",
"vs/editor/contrib/folding/browser/hiddenRangeModel",
"vs/editor/contrib/folding/browser/indentRangeProvider",
"vs/nls",
"vs/platform/contextkey/common/contextkey",
"vs/editor/contrib/folding/browser/foldingDecorations",
"vs/editor/contrib/folding/browser/foldingRanges",
"vs/editor/contrib/folding/browser/syntaxRangeProvider",
"vs/platform/notification/common/notification",
"vs/editor/common/services/languageFeatureDebounce",
"vs/base/common/stopwatch",
"vs/editor/common/services/languageFeatures",
"vs/base/common/event",
"vs/platform/commands/common/commands",
"vs/base/common/uri",
"vs/editor/common/services/model",
"vs/platform/configuration/common/configuration",
"vs/css!vs/editor/contrib/folding/browser/folding"
],
"vs/editor/contrib/fontZoom/browser/fontZoom": [
"require",
"exports",
"vs/editor/browser/editorExtensions",
"vs/editor/common/config/editorZoom",
"vs/nls"
],
"vs/editor/contrib/format/browser/formatActions": [
"require",
"exports",
"vs/base/common/arrays",
"vs/base/common/cancellation",
"vs/base/common/errors",
"vs/base/common/keyCodes",
"vs/base/common/lifecycle",
"vs/editor/browser/editorExtensions",
"vs/editor/browser/services/codeEditorService",
"vs/editor/common/core/characterClassifier",
"vs/editor/common/core/range",
"vs/editor/common/editorContextKeys",
"vs/editor/common/services/editorWorker",
"vs/editor/common/services/languageFeatures",
"vs/editor/contrib/format/browser/format",
"vs/editor/contrib/format/browser/formattingEdit",
"vs/nls",
"vs/platform/accessibilitySignal/browser/accessibilitySignalService",
"vs/platform/commands/common/commands",
"vs/platform/contextkey/common/contextkey",
"vs/platform/instantiation/common/instantiation",
"vs/platform/progress/common/progress"
],
"vs/editor/contrib/documentSymbols/browser/documentSymbols": [
"require",
"exports",
"vs/base/common/cancellation",
"vs/base/common/types",
"vs/base/common/uri",
"vs/editor/common/services/resolverService",
"vs/editor/contrib/documentSymbols/browser/outlineModel",
"vs/platform/commands/common/commands"
],
"vs/editor/contrib/inlineCompletions/browser/inlineCompletions.contribution": [
"require",
"exports",
"vs/editor/browser/editorExtensions",
"vs/editor/contrib/hover/browser/hoverTypes",
"vs/editor/contrib/inlineCompletions/browser/controller/commands",
"vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant",
"vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView",
"vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController",
"vs/platform/accessibility/browser/accessibleViewRegistry",
"vs/platform/actions/common/actions"
],
"vs/editor/contrib/inlineProgress/browser/inlineProgress": [
"require",
"exports",
"vs/base/browser/dom",
"vs/base/common/async",
"vs/base/common/codicons",
"vs/base/common/lifecycle",
"vs/base/common/strings",
"vs/base/common/themables",
"vs/editor/common/core/range",
"vs/editor/common/model/textModel",
"vs/platform/instantiation/common/instantiation",
"vs/css!vs/editor/contrib/inlineProgress/browser/inlineProgressWidget"
],
"vs/editor/contrib/gotoSymbol/browser/goToCommands": [
"require",
"exports",
"vs/base/browser/ui/aria/aria",
"vs/base/common/async",
"vs/base/common/keyCodes",
"vs/base/common/types",
"vs/base/common/uri",
"vs/editor/contrib/editorState/browser/editorState",
"vs/editor/browser/editorBrowser",
"vs/editor/browser/editorExtensions",
"vs/editor/browser/services/codeEditorService",
"vs/editor/browser/widget/codeEditor/embeddedCodeEditorWidget",
"vs/editor/common/core/position",
"vs/editor/common/core/range",
"vs/editor/common/editorContextKeys",
"vs/editor/common/languages",
"vs/editor/contrib/gotoSymbol/browser/peek/referencesController",
"vs/editor/contrib/gotoSymbol/browser/referencesModel",
"vs/editor/contrib/gotoSymbol/browser/symbolNavigation",
"vs/editor/contrib/message/browser/messageController",
"vs/editor/contrib/peekView/browser/peekView",
"vs/nls",
"vs/platform/actions/common/actions",
"vs/platform/commands/common/commands",
"vs/platform/contextkey/common/contextkey",
"vs/platform/instantiation/common/instantiation",
"vs/platform/notification/common/notification",
"vs/platform/progress/common/progress",
"vs/editor/contrib/gotoSymbol/browser/goToSymbol",
"vs/editor/common/services/languageFeatures",
"vs/base/common/iterator",
"vs/platform/contextkey/common/contextkeys"
],
"vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition": [
"require",
"exports",
"vs/base/common/async",
"vs/base/common/errors",
"vs/base/common/htmlContent",
"vs/base/common/lifecycle",
"vs/editor/contrib/editorState/browser/editorState",
"vs/editor/browser/editorExtensions",
"vs/editor/common/core/range",
"vs/editor/common/languages/language",
"vs/editor/common/services/resolverService",
"vs/editor/contrib/gotoSymbol/browser/link/clickLinkGesture",
"vs/editor/contrib/peekView/browser/peekView",
"vs/nls",
"vs/platform/contextkey/common/contextkey",
"vs/editor/contrib/gotoSymbol/browser/goToCommands",
"vs/editor/contrib/gotoSymbol/browser/goToSymbol",
"vs/editor/common/services/languageFeatures",
"vs/editor/common/model/textModel",
"vs/css!vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition"
],
"vs/editor/contrib/gotoError/browser/gotoError": [
"require",
"exports",
"vs/base/common/codicons",
"vs/base/common/lifecycle",
"vs/editor/browser/editorExtensions",
"vs/editor/browser/services/codeEditorService",
"vs/editor/common/core/position",
"vs/editor/common/core/range",
"vs/editor/common/editorContextKeys",
"vs/editor/contrib/gotoError/browser/markerNavigationService",
"vs/nls",
"vs/platform/actions/common/actions",
"vs/platform/contextkey/common/contextkey",
"vs/platform/instantiation/common/instantiation",
"vs/platform/theme/common/iconRegistry",
"vs/editor/contrib/gotoError/browser/gotoErrorWidget"
],
"vs/editor/contrib/hover/browser/hoverContribution": [
"require",
"exports",
"vs/editor/contrib/hover/browser/hoverActions",
"vs/editor/browser/editorExtensions",
"vs/platform/theme/common/colorRegistry",
"vs/platform/theme/common/themeService",
"vs/editor/contrib/hover/browser/hoverTypes",
"vs/editor/contrib/hover/browser/markdownHoverParticipant",
"vs/editor/contrib/hover/browser/markerHoverParticipant",
"vs/editor/contrib/hover/browser/contentHoverController2",
"vs/editor/contrib/hover/browser/marginHoverController",
"vs/platform/accessibility/browser/accessibleViewRegistry",
"vs/editor/contrib/hover/browser/hoverAccessibleViews",
"vs/css!vs/editor/contrib/hover/browser/hover"
],
"vs/editor/contrib/indentation/browser/indentation": [
"require",
"exports",
"vs/base/common/lifecycle",
"vs/base/common/strings",
"vs/editor/browser/editorExtensions",
"vs/editor/common/commands/shiftCommand",
"vs/editor/common/core/range",
"vs/editor/common/editorContextKeys",
"vs/editor/common/languages/languageConfigurationRegistry",
"vs/editor/common/services/model",
"vs/editor/contrib/indentation/common/indentUtils",
"vs/nls",
"vs/platform/quickinput/common/quickInput",
"vs/editor/common/languages/autoIndent",
"vs/editor/contrib/indentation/common/indentation",
"vs/editor/common/tokens/lineTokens"
],
"vs/editor/contrib/inlayHints/browser/inlayHintsContribution": [
"require",
"exports",
"vs/editor/browser/editorExtensions",
"vs/editor/contrib/hover/browser/hoverTypes",
"vs/editor/contrib/inlayHints/browser/inlayHintsController",
"vs/editor/contrib/inlayHints/browser/inlayHintsHover"
],
"vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace": [
"require",
"exports",
"vs/base/common/async",
"vs/base/common/errors",
"vs/editor/contrib/editorState/browser/editorState",
"vs/editor/browser/editorExtensions",
"vs/editor/common/core/range",
"vs/editor/common/core/selection",
"vs/editor/common/editorContextKeys",
"vs/editor/common/model/textModel",
"vs/editor/common/services/editorWorker",
"vs/nls",
"vs/editor/contrib/inPlaceReplace/browser/inPlaceReplaceCommand",
"vs/css!vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace"
],
"vs/editor/contrib/lineSelection/browser/lineSelection": [
"require",
"exports",
"vs/editor/browser/editorExtensions",
"vs/editor/common/cursor/cursorMoveCommands",
"vs/editor/common/editorContextKeys",
"vs/nls"
],
"vs/editor/contrib/linesOperations/browser/linesOperations": [
"require",
"exports",
"vs/base/common/keyCodes",
"vs/editor/browser/coreCommands",
"vs/editor/browser/editorExtensions",
"vs/editor/common/commands/replaceCommand",
"vs/editor/common/commands/trimTrailingWhitespaceCommand",
"vs/editor/common/cursor/cursorTypeOperations",
"vs/editor/common/cursor/cursorTypeEditOperations",
"vs/editor/common/core/editOperation",
"vs/editor/common/core/position",
"vs/editor/common/core/range",
"vs/editor/common/core/selection",
"vs/editor/common/editorContextKeys",
"vs/editor/contrib/linesOperations/browser/copyLinesCommand",
"vs/editor/contrib/linesOperations/browser/moveLinesCommand",
"vs/editor/contrib/linesOperations/browser/sortLinesCommand",
"vs/nls",
"vs/platform/actions/common/actions",
"vs/editor/common/languages/languageConfigurationRegistry",
"vs/platform/configuration/common/configuration"
],
"vs/editor/contrib/linkedEditing/browser/linkedEditing": [
"require",
"exports",
"vs/base/common/arrays",
"vs/base/common/async",
"vs/base/common/cancellation",
"vs/base/common/color",
"vs/base/common/errors",
"vs/base/common/event",
"vs/base/common/lifecycle",
"vs/base/common/strings",
"vs/base/common/uri",
"vs/editor/browser/editorExtensions",
"vs/editor/browser/services/codeEditorService",
"vs/editor/common/core/position",
"vs/editor/common/core/range",
"vs/editor/common/editorContextKeys",
"vs/editor/common/model/textModel",
"vs/editor/common/languages/languageConfigurationRegistry",
"vs/nls",
"vs/platform/contextkey/common/contextkey",
"vs/editor/common/services/languageFeatures",
"vs/platform/theme/common/colorRegistry",
"vs/editor/common/services/languageFeatureDebounce",
"vs/base/common/stopwatch",
"vs/css!vs/editor/contrib/linkedEditing/browser/linkedEditing"
],
"vs/editor/contrib/links/browser/links": [
"require",
"exports",
"vs/base/common/async",
"vs/base/common/cancellation",
"vs/base/common/errors",
"vs/base/common/htmlContent",
"vs/base/common/lifecycle",
"vs/base/common/network",
"vs/base/common/platform",
"vs/base/common/resources",
"vs/base/common/stopwatch",
"vs/base/common/uri",
"vs/editor/browser/editorExtensions",
"vs/editor/common/model/textModel",
"vs/editor/common/services/languageFeatureDebounce",
"vs/editor/common/services/languageFeatures",
"vs/editor/contrib/gotoSymbol/browser/link/clickLinkGesture",
"vs/editor/contrib/links/browser/getLinks",
"vs/nls",
"vs/platform/notification/common/notification",
"vs/platform/opener/common/opener",
"vs/css!vs/editor/contrib/links/browser/links"
],
"vs/editor/contrib/longLinesHelper/browser/longLinesHelper": [
"require",
"exports",
"vs/base/common/lifecycle",
"vs/editor/browser/editorExtensions"
],
"vs/editor/contrib/multicursor/browser/multicursor": [
"require",
"exports",
"vs/base/browser/ui/aria/aria",
"vs/base/common/async",
"vs/base/common/keyCodes",
"vs/base/common/lifecycle",
"vs/editor/browser/editorExtensions",
"vs/editor/common/cursor/cursorMoveCommands",
"vs/editor/common/core/range",
"vs/editor/common/core/selection",
"vs/editor/common/editorContextKeys",
"vs/editor/contrib/find/browser/findController",
"vs/nls",
"vs/platform/actions/common/actions",
"vs/platform/contextkey/common/contextkey",
"vs/editor/common/services/languageFeatures",
"vs/editor/contrib/wordHighlighter/browser/highlightDecorations",
"vs/platform/instantiation/common/instantiation"
],
"vs/editor/contrib/inlineEdit/browser/inlineEdit.contribution": [
"require",
"exports",
"vs/editor/browser/editorExtensions",
"vs/editor/contrib/inlineEdit/browser/commands",
"vs/editor/contrib/inlineEdit/browser/inlineEditController"
],
"vs/editor/contrib/inlineEdits/browser/inlineEdits.contribution": [
"require",