mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 13:55:41 +01:00
Add webpack loader plugin
This commit is contained in:
parent
32f5433657
commit
7d6ae1b4f3
8 changed files with 1144 additions and 0 deletions
170
webpack/features.js
Normal file
170
webpack/features.js
Normal file
|
|
@ -0,0 +1,170 @@
|
|||
module.exports = {
|
||||
accessibilityHelp: {
|
||||
entry: 'vs/editor/standalone/browser/accessibilityHelp/accessibilityHelp',
|
||||
worker: undefined,
|
||||
},
|
||||
bracketMatching: {
|
||||
entry: 'vs/editor/contrib/bracketMatching/bracketMatching',
|
||||
worker: undefined,
|
||||
},
|
||||
caretOperations: {
|
||||
entry: 'vs/editor/contrib/caretOperations/caretOperations',
|
||||
worker: undefined,
|
||||
},
|
||||
clipboard: {
|
||||
entry: 'vs/editor/contrib/clipboard/clipboard',
|
||||
worker: undefined,
|
||||
},
|
||||
codeEditorWidget: {
|
||||
entry: 'vs/editor/browser/widget/codeEditorWidget',
|
||||
worker: undefined,
|
||||
},
|
||||
codelensController: {
|
||||
entry: 'vs/editor/contrib/codelens/codelensController',
|
||||
worker: undefined,
|
||||
},
|
||||
colorDetector: {
|
||||
entry: 'vs/editor/contrib/colorPicker/colorDetector',
|
||||
worker: undefined,
|
||||
},
|
||||
comment: {
|
||||
entry: 'vs/editor/contrib/comment/comment',
|
||||
worker: undefined,
|
||||
},
|
||||
contextmenu: {
|
||||
entry: 'vs/editor/contrib/contextmenu/contextmenu',
|
||||
worker: undefined,
|
||||
},
|
||||
coreCommands: {
|
||||
entry: 'vs/editor/browser/controller/coreCommands',
|
||||
worker: undefined,
|
||||
},
|
||||
cursorUndo: {
|
||||
entry: 'vs/editor/contrib/cursorUndo/cursorUndo',
|
||||
worker: undefined,
|
||||
},
|
||||
diffEditorWidget: {
|
||||
entry: 'vs/editor/browser/widget/diffEditorWidget',
|
||||
worker: undefined,
|
||||
},
|
||||
diffNavigator: {
|
||||
entry: 'vs/editor/browser/widget/diffNavigator',
|
||||
worker: undefined,
|
||||
},
|
||||
dnd: {
|
||||
entry: 'vs/editor/contrib/dnd/dnd',
|
||||
worker: undefined,
|
||||
},
|
||||
findController: {
|
||||
entry: 'vs/editor/contrib/find/findController',
|
||||
worker: undefined,
|
||||
},
|
||||
folding: {
|
||||
entry: 'vs/editor/contrib/folding/folding',
|
||||
worker: undefined,
|
||||
},
|
||||
formatActions: {
|
||||
entry: 'vs/editor/contrib/format/formatActions',
|
||||
worker: undefined,
|
||||
},
|
||||
goToDeclarationCommands: {
|
||||
entry: 'vs/editor/contrib/goToDeclaration/goToDeclarationCommands',
|
||||
worker: undefined,
|
||||
},
|
||||
goToDeclarationMouse: {
|
||||
entry: 'vs/editor/contrib/goToDeclaration/goToDeclarationMouse',
|
||||
worker: undefined,
|
||||
},
|
||||
gotoError: {
|
||||
entry: 'vs/editor/contrib/gotoError/gotoError',
|
||||
worker: undefined,
|
||||
},
|
||||
gotoLine: {
|
||||
entry: 'vs/editor/standalone/browser/quickOpen/gotoLine',
|
||||
worker: undefined,
|
||||
},
|
||||
hover: {
|
||||
entry: 'vs/editor/contrib/hover/hover',
|
||||
worker: undefined,
|
||||
},
|
||||
inPlaceReplace: {
|
||||
entry: 'vs/editor/contrib/inPlaceReplace/inPlaceReplace',
|
||||
worker: undefined,
|
||||
},
|
||||
inspectTokens: {
|
||||
entry: 'vs/editor/standalone/browser/inspectTokens/inspectTokens',
|
||||
worker: undefined,
|
||||
},
|
||||
iPadShowKeyboard: {
|
||||
entry: 'vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard',
|
||||
worker: undefined,
|
||||
},
|
||||
linesOperations: {
|
||||
entry: 'vs/editor/contrib/linesOperations/linesOperations',
|
||||
worker: undefined,
|
||||
},
|
||||
links: {
|
||||
entry: 'vs/editor/contrib/links/links',
|
||||
worker: undefined,
|
||||
},
|
||||
multicursor: {
|
||||
entry: 'vs/editor/contrib/multicursor/multicursor',
|
||||
worker: undefined,
|
||||
},
|
||||
parameterHints: {
|
||||
entry: 'vs/editor/contrib/parameterHints/parameterHints',
|
||||
worker: undefined,
|
||||
},
|
||||
quickCommand: {
|
||||
entry: 'vs/editor/standalone/browser/quickOpen/quickCommand',
|
||||
worker: undefined,
|
||||
},
|
||||
quickFixCommands: {
|
||||
entry: 'vs/editor/contrib/quickFix/quickFixCommands',
|
||||
worker: undefined,
|
||||
},
|
||||
quickOutline: {
|
||||
entry: 'vs/editor/standalone/browser/quickOpen/quickOutline',
|
||||
worker: undefined,
|
||||
},
|
||||
referenceSearch: {
|
||||
entry: 'vs/editor/contrib/referenceSearch/referenceSearch',
|
||||
worker: undefined,
|
||||
},
|
||||
rename: {
|
||||
entry: 'vs/editor/contrib/rename/rename',
|
||||
worker: undefined,
|
||||
},
|
||||
smartSelect: {
|
||||
entry: 'vs/editor/contrib/smartSelect/smartSelect',
|
||||
worker: undefined,
|
||||
},
|
||||
snippetController2: {
|
||||
entry: 'vs/editor/contrib/snippet/snippetController2',
|
||||
worker: undefined,
|
||||
},
|
||||
suggestController: {
|
||||
entry: 'vs/editor/contrib/suggest/suggestController',
|
||||
worker: undefined,
|
||||
},
|
||||
toggleHighContrast: {
|
||||
entry: 'vs/editor/standalone/browser/toggleHighContrast/toggleHighContrast',
|
||||
worker: undefined,
|
||||
},
|
||||
toggleTabFocusMode: {
|
||||
entry: 'vs/editor/contrib/toggleTabFocusMode/toggleTabFocusMode',
|
||||
worker: undefined,
|
||||
},
|
||||
transpose: {
|
||||
entry: 'vs/editor/contrib/caretOperations/transpose',
|
||||
worker: undefined,
|
||||
},
|
||||
wordHighlighter: {
|
||||
entry: 'vs/editor/contrib/wordHighlighter/wordHighlighter',
|
||||
worker: undefined,
|
||||
},
|
||||
wordOperations: {
|
||||
entry: 'vs/editor/contrib/wordOperations/wordOperations',
|
||||
worker: undefined,
|
||||
},
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue