features.js 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. module.exports = {
  2. accessibilityHelp: {
  3. entry: 'vs/editor/standalone/browser/accessibilityHelp/accessibilityHelp',
  4. worker: undefined,
  5. },
  6. bracketMatching: {
  7. entry: 'vs/editor/contrib/bracketMatching/bracketMatching',
  8. worker: undefined,
  9. },
  10. caretOperations: {
  11. entry: 'vs/editor/contrib/caretOperations/caretOperations',
  12. worker: undefined,
  13. },
  14. clipboard: {
  15. entry: 'vs/editor/contrib/clipboard/clipboard',
  16. worker: undefined,
  17. },
  18. codeEditorWidget: {
  19. entry: 'vs/editor/browser/widget/codeEditorWidget',
  20. worker: undefined,
  21. },
  22. codelensController: {
  23. entry: 'vs/editor/contrib/codelens/codelensController',
  24. worker: undefined,
  25. },
  26. colorDetector: {
  27. entry: 'vs/editor/contrib/colorPicker/colorDetector',
  28. worker: undefined,
  29. },
  30. comment: {
  31. entry: 'vs/editor/contrib/comment/comment',
  32. worker: undefined,
  33. },
  34. contextmenu: {
  35. entry: 'vs/editor/contrib/contextmenu/contextmenu',
  36. worker: undefined,
  37. },
  38. coreCommands: {
  39. entry: 'vs/editor/browser/controller/coreCommands',
  40. worker: undefined,
  41. },
  42. cursorUndo: {
  43. entry: 'vs/editor/contrib/cursorUndo/cursorUndo',
  44. worker: undefined,
  45. },
  46. diffEditorWidget: {
  47. entry: 'vs/editor/browser/widget/diffEditorWidget',
  48. worker: undefined,
  49. },
  50. diffNavigator: {
  51. entry: 'vs/editor/browser/widget/diffNavigator',
  52. worker: undefined,
  53. },
  54. dnd: {
  55. entry: 'vs/editor/contrib/dnd/dnd',
  56. worker: undefined,
  57. },
  58. findController: {
  59. entry: 'vs/editor/contrib/find/findController',
  60. worker: undefined,
  61. },
  62. folding: {
  63. entry: 'vs/editor/contrib/folding/folding',
  64. worker: undefined,
  65. },
  66. formatActions: {
  67. entry: 'vs/editor/contrib/format/formatActions',
  68. worker: undefined,
  69. },
  70. goToDeclarationCommands: {
  71. entry: 'vs/editor/contrib/goToDeclaration/goToDeclarationCommands',
  72. worker: undefined,
  73. },
  74. goToDeclarationMouse: {
  75. entry: 'vs/editor/contrib/goToDeclaration/goToDeclarationMouse',
  76. worker: undefined,
  77. },
  78. gotoError: {
  79. entry: 'vs/editor/contrib/gotoError/gotoError',
  80. worker: undefined,
  81. },
  82. gotoLine: {
  83. entry: 'vs/editor/standalone/browser/quickOpen/gotoLine',
  84. worker: undefined,
  85. },
  86. hover: {
  87. entry: 'vs/editor/contrib/hover/hover',
  88. worker: undefined,
  89. },
  90. inPlaceReplace: {
  91. entry: 'vs/editor/contrib/inPlaceReplace/inPlaceReplace',
  92. worker: undefined,
  93. },
  94. inspectTokens: {
  95. entry: 'vs/editor/standalone/browser/inspectTokens/inspectTokens',
  96. worker: undefined,
  97. },
  98. iPadShowKeyboard: {
  99. entry: 'vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard',
  100. worker: undefined,
  101. },
  102. linesOperations: {
  103. entry: 'vs/editor/contrib/linesOperations/linesOperations',
  104. worker: undefined,
  105. },
  106. links: {
  107. entry: 'vs/editor/contrib/links/links',
  108. worker: undefined,
  109. },
  110. multicursor: {
  111. entry: 'vs/editor/contrib/multicursor/multicursor',
  112. worker: undefined,
  113. },
  114. parameterHints: {
  115. entry: 'vs/editor/contrib/parameterHints/parameterHints',
  116. worker: undefined,
  117. },
  118. quickCommand: {
  119. entry: 'vs/editor/standalone/browser/quickOpen/quickCommand',
  120. worker: undefined,
  121. },
  122. quickFixCommands: {
  123. entry: 'vs/editor/contrib/quickFix/quickFixCommands',
  124. worker: undefined,
  125. },
  126. quickOutline: {
  127. entry: 'vs/editor/standalone/browser/quickOpen/quickOutline',
  128. worker: undefined,
  129. },
  130. referenceSearch: {
  131. entry: 'vs/editor/contrib/referenceSearch/referenceSearch',
  132. worker: undefined,
  133. },
  134. rename: {
  135. entry: 'vs/editor/contrib/rename/rename',
  136. worker: undefined,
  137. },
  138. smartSelect: {
  139. entry: 'vs/editor/contrib/smartSelect/smartSelect',
  140. worker: undefined,
  141. },
  142. snippetController2: {
  143. entry: 'vs/editor/contrib/snippet/snippetController2',
  144. worker: undefined,
  145. },
  146. suggestController: {
  147. entry: 'vs/editor/contrib/suggest/suggestController',
  148. worker: undefined,
  149. },
  150. toggleHighContrast: {
  151. entry: 'vs/editor/standalone/browser/toggleHighContrast/toggleHighContrast',
  152. worker: undefined,
  153. },
  154. toggleTabFocusMode: {
  155. entry: 'vs/editor/contrib/toggleTabFocusMode/toggleTabFocusMode',
  156. worker: undefined,
  157. },
  158. transpose: {
  159. entry: 'vs/editor/contrib/caretOperations/transpose',
  160. worker: undefined,
  161. },
  162. wordHighlighter: {
  163. entry: 'vs/editor/contrib/wordHighlighter/wordHighlighter',
  164. worker: undefined,
  165. },
  166. wordOperations: {
  167. entry: 'vs/editor/contrib/wordOperations/wordOperations',
  168. worker: undefined,
  169. },
  170. };