mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 19:42:56 +01:00
34 lines
1 KiB
TypeScript
34 lines
1 KiB
TypeScript
import { Plugin } from 'webpack'
|
|
|
|
interface IMonacoEditorWebpackPluginOpts {
|
|
/**
|
|
* 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[];
|
|
|
|
/**
|
|
* Specify a filename template to use for generated files.
|
|
* Use e.g. '[name].worker.[contenthash].js' to include content-based hashes.
|
|
*/
|
|
filename?: string;
|
|
|
|
/**
|
|
* Override the public path from which files generated by this plugin will be served.
|
|
* This wins out over Webpack's dynamic runtime path and can be useful to avoid attempting to load workers cross-
|
|
* origin when using a CDN for other static resources.
|
|
* Use e.g. '/' if you want to load your resources from the current origin.
|
|
*/
|
|
publicPath?: string;
|
|
}
|
|
|
|
declare class MonacoEditorWebpackPlugin extends Plugin {
|
|
constructor(opts?: IMonacoEditorWebpackPluginOpts)
|
|
}
|
|
|
|
export = MonacoEditorWebpackPlugin
|