Webpack: Add DllPlugin and DllReferencePlugin classes and properties

This commit is contained in:
Mike Hill
2017-03-17 09:49:03 -05:00
parent 1f6914b860
commit e4566cbfc1
+78
View File
@@ -689,6 +689,84 @@ declare namespace webpack {
constructor(definitions: {[key: string]: any});
}
class DllPlugin extends Plugin {
constructor(options: DllPlugin.Options | DllPlugin.Options[]);
}
namespace DllPlugin {
interface Options {
/**
* The absolute path to the manifest json file (output).
*/
path: string,
/**
* The name of the exposed DLL function (keep consistent with `output.library`).
*/
name: string,
/**
* The context of requests in the manifest file.
*
* Defaults to the webpack context.
*/
context?: string
}
}
class DllReferencePlugin extends Plugin {
constructor(options: DllReferencePlugin.Options);
}
namespace DllReferencePlugin {
interface Options {
/**
* The context of requests in the manifest (or content property).
*
* This is an <b>absolute path</b>.
*/
context: string,
/**
* An object containing `content` and `name`.
*/
manifest: {
content: string,
name: string
},
/**
* The prefix which is used for accessing the content of the DLL.
*/
scope?: string,
/**
* The name where the DLL is exposed.
*
* Defaults to `manifest.name`.
*
* See also `externals`.
*/
name?: string,
/**
* The type how the DLL is exposed.
*
* Defaults to `"var"`.
*
* See also `externals`.
*/
sourceType?: string,
/**
* The mappings from the request to module ID.
*
* Defaults to `manifest.content`.
*/
content?: any
}
}
class EvalSourceMapDevToolPlugin extends Plugin {
constructor(options?: false | string | EvalSourceMapDevToolPlugin.Options);
}