2.1.9 • Published 6 months ago

@types/case-sensitive-paths-webpack-plugin v2.1.9

Weekly downloads
77,400
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/case-sensitive-paths-webpack-plugin

Summary

This package contains type definitions for case-sensitive-paths-webpack-plugin (https://github.com/Urthen/case-sensitive-paths-webpack-plugin#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/case-sensitive-paths-webpack-plugin.

index.d.ts

// Type definitions for case-sensitive-paths-webpack-plugin 2.1
// Project: https://github.com/Urthen/case-sensitive-paths-webpack-plugin#readme
// Definitions by: Andrew Makarov <https://github.com/r3nya>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.7

import { Plugin, Compiler } from 'webpack';

export = CaseSensitivePathsWebpackPlugin;

declare class CaseSensitivePathsWebpackPlugin extends Plugin {
    constructor(options?: CaseSensitivePathsWebpackPlugin.Options);

    apply(compiler: Compiler): void;
}

declare namespace CaseSensitivePathsWebpackPlugin {
    interface Options {
        /**
         * Show more information
         */
        debug?: boolean | undefined;
        /**
         * Run before emit instead of after resolve for individual files
         */
        useBeforeEmitHook?: boolean | undefined;
    }
}

Additional Details

  • Last updated: Tue, 06 Jul 2021 18:05:49 GMT
  • Dependencies: @types/webpack
  • Global values: none

Credits

These definitions were written by Andrew Makarov.