UNPKG

725 BTypeScriptView Raw
1/**
2 * This file was automatically generated.
3 * DO NOT MODIFY BY HAND.
4 * Run `yarn special-lint-fix` to update
5 */
6
7export interface DllPluginOptions {
8 /**
9 * Context of requests in the manifest file (defaults to the webpack context)
10 */
11 context?: string;
12 /**
13 * If true, only entry points will be exposed
14 */
15 entryOnly?: boolean;
16 /**
17 * If true, manifest json file (output) will be formatted
18 */
19 format?: boolean;
20 /**
21 * Name of the exposed dll function (external name, use value of 'output.library')
22 */
23 name?: string;
24 /**
25 * Absolute path to the manifest json file (output)
26 */
27 path: string;
28 /**
29 * Type of the dll bundle (external type, use value of 'output.libraryTarget')
30 */
31 type?: string;
32}