UNPKG

1.7 kBMarkdownView Raw
1# Installation
2> `npm install --save @types/case-sensitive-paths-webpack-plugin`
3
4# Summary
5This package contains type definitions for case-sensitive-paths-webpack-plugin (https://github.com/Urthen/case-sensitive-paths-webpack-plugin#readme).
6
7# Details
8Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/case-sensitive-paths-webpack-plugin.
9## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/case-sensitive-paths-webpack-plugin/index.d.ts)
10````ts
11// Type definitions for case-sensitive-paths-webpack-plugin 2.1
12// Project: https://github.com/Urthen/case-sensitive-paths-webpack-plugin#readme
13// Definitions by: Andrew Makarov <https://github.com/r3nya>
14// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
15// TypeScript Version: 3.7
16
17import { Plugin, Compiler } from 'webpack';
18
19export = CaseSensitivePathsWebpackPlugin;
20
21declare class CaseSensitivePathsWebpackPlugin extends Plugin {
22 constructor(options?: CaseSensitivePathsWebpackPlugin.Options);
23
24 apply(compiler: Compiler): void;
25}
26
27declare namespace CaseSensitivePathsWebpackPlugin {
28 interface Options {
29 /**
30 * Show more information
31 */
32 debug?: boolean | undefined;
33 /**
34 * Run before emit instead of after resolve for individual files
35 */
36 useBeforeEmitHook?: boolean | undefined;
37 }
38}
39
40````
41
42### Additional Details
43 * Last updated: Tue, 06 Jul 2021 18:05:49 GMT
44 * Dependencies: [@types/webpack](https://npmjs.com/package/@types/webpack)
45 * Global values: none
46
47# Credits
48These definitions were written by [Andrew Makarov](https://github.com/r3nya).
49
\No newline at end of file