2020-05-12 21:58:14 +08:00
|
|
|
/*
|
2018-09-18 19:57:44 +08:00
|
|
|
* This file was automatically generated.
|
|
|
|
* DO NOT MODIFY BY HAND.
|
2025-05-02 00:16:09 +08:00
|
|
|
* Run `yarn fix:special` to update
|
2018-05-08 12:04:57 +08:00
|
|
|
*/
|
|
|
|
|
2018-09-20 16:13:38 +08:00
|
|
|
export interface DllPluginOptions {
|
2018-05-08 12:04:57 +08:00
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* Context of requests in the manifest file (defaults to the webpack context).
|
2018-05-08 12:04:57 +08:00
|
|
|
*/
|
|
|
|
context?: string;
|
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* If true, only entry points will be exposed (default: true).
|
2018-05-08 12:04:57 +08:00
|
|
|
*/
|
2018-09-19 16:17:33 +08:00
|
|
|
entryOnly?: boolean;
|
2018-10-03 23:48:29 +08:00
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* If true, manifest json file (output) will be formatted.
|
2018-10-03 23:48:29 +08:00
|
|
|
*/
|
|
|
|
format?: boolean;
|
2018-05-08 12:04:57 +08:00
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* Name of the exposed dll function (external name, use value of 'output.library').
|
2018-05-08 12:04:57 +08:00
|
|
|
*/
|
2018-09-19 16:17:33 +08:00
|
|
|
name?: string;
|
2018-05-08 12:04:57 +08:00
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* Absolute path to the manifest json file (output).
|
2018-05-08 12:04:57 +08:00
|
|
|
*/
|
|
|
|
path: string;
|
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* Type of the dll bundle (external type, use value of 'output.libraryTarget').
|
2018-05-08 12:04:57 +08:00
|
|
|
*/
|
2018-09-19 16:17:33 +08:00
|
|
|
type?: string;
|
2018-05-08 12:04:57 +08:00
|
|
|
}
|