2018-05-08 12:04:57 +08:00
|
|
|
/**
|
2018-09-18 19:57:44 +08:00
|
|
|
* This file was automatically generated.
|
|
|
|
* DO NOT MODIFY BY HAND.
|
|
|
|
* Run `yarn special-lint-fix` 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
|
|
|
/**
|
|
|
|
* Context of requests in the manifest file (defaults to the webpack context)
|
|
|
|
*/
|
|
|
|
context?: string;
|
|
|
|
/**
|
2020-01-03 00:46:21 +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
|
|
|
/**
|
2018-10-04 00:12:05 +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
|
|
|
/**
|
2018-09-19 16:17:33 +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
|
|
|
/**
|
|
|
|
* Absolute path to the manifest json file (output)
|
|
|
|
*/
|
|
|
|
path: string;
|
|
|
|
/**
|
2018-09-19 16:17:33 +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
|
|
|
}
|