mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 15:05:39 +01:00
24 lines
564 B
TypeScript
24 lines
564 B
TypeScript
|
|
export interface IMonacoEditorWebpackPluginOpts {
|
|
/**
|
|
* custom output path for worker scripts, relative to the main webpack `output.path`.
|
|
* Defaults to ''.
|
|
*/
|
|
output: string;
|
|
|
|
/**
|
|
* Include only a subset of the languages supported.
|
|
*/
|
|
languages: string[];
|
|
|
|
/**
|
|
* Include only a subset of the editor features.
|
|
* Use e.g. '!contextmenu' to exclude a certain feature.
|
|
*/
|
|
features: string[];
|
|
}
|
|
|
|
export default class MonacoEditorWebpackPlugin {
|
|
constructor(opts?: IMonacoEditorWebpackPluginOpts)
|
|
}
|
|
|