1 | import { Compiler, Plugin } from "webpack";
|
2 |
|
3 | export = CaseSensitivePathsWebpackPlugin;
|
4 |
|
5 | declare class CaseSensitivePathsWebpackPlugin extends Plugin {
|
6 | constructor(options?: CaseSensitivePathsWebpackPlugin.Options);
|
7 |
|
8 | apply(compiler: Compiler): void;
|
9 | }
|
10 |
|
11 | declare namespace CaseSensitivePathsWebpackPlugin {
|
12 | interface Options {
|
13 | /**
|
14 | * Show more information
|
15 | */
|
16 | debug?: boolean | undefined;
|
17 | /**
|
18 | * Run before emit instead of after resolve for individual files
|
19 | */
|
20 | useBeforeEmitHook?: boolean | undefined;
|
21 | }
|
22 | }
|