webpack/declarations/plugins/DllPlugin.d.ts

33 lines
741 B
TypeScript
Raw Permalink Normal View History

/*
* 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
/**
* Context of requests in the manifest file (defaults to the webpack context).
2018-05-08 12:04:57 +08:00
*/
context?: string;
/**
* 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;
/**
* If true, manifest json file (output) will be formatted.
*/
format?: boolean;
2018-05-08 12:04:57 +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).
2018-05-08 12:04:57 +08:00
*/
path: string;
/**
* 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
}