forked from Mike5535/2022_2_BugOverload_UI_kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.d.ts
More file actions
54 lines (54 loc) · 1.37 KB
/
Copy pathwebpack.config.d.ts
File metadata and controls
54 lines (54 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import MiniCssExtractPlugin = require("mini-css-extract-plugin");
import { CleanWebpackPlugin } from "clean-webpack-plugin";
export declare const mode: string;
export declare const entry: string;
export declare namespace output {
const path: string;
const publicPath: string;
const filename: string;
const library: any;
const libraryTarget: string;
const clean: boolean;
}
export declare namespace resolve {
const extensions: string[];
const plugins: any[];
}
export declare namespace module {
const rules: ({
test: RegExp;
use: string[];
exclude?: undefined;
loader?: undefined;
type?: undefined;
} | {
test: RegExp;
use: string[];
exclude: RegExp;
loader?: undefined;
type?: undefined;
} | {
test: RegExp;
exclude: string;
use: string;
loader?: undefined;
type?: undefined;
} | {
test: RegExp;
loader: string;
use?: undefined;
exclude?: undefined;
type?: undefined;
} | {
test: RegExp;
type: string;
use?: undefined;
exclude?: undefined;
loader?: undefined;
})[];
}
declare const plugins_1: (MiniCssExtractPlugin | CleanWebpackPlugin)[];
export { plugins_1 as plugins };
export declare namespace optimization {
const minimize: boolean;
}