2.0.5 • Published 6 months ago

@types/webpack-entry-manifest-plugin v2.0.5

Weekly downloads
5
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/webpack-entry-manifest-plugin

Summary

This package contains type definitions for webpack-entry-manifest-plugin (https://github.com/nuintun/webpack-entry-manifest-plugin#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webpack-entry-manifest-plugin.

index.d.ts

// Type definitions for webpack-entry-manifest-plugin 2.0
// Project: https://github.com/nuintun/webpack-entry-manifest-plugin#readme
// Definitions by: Piotr Błażejewicz <https://github.com/peterblazejewicz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.7

import { Plugin } from 'webpack';

/**
 * Webpack plugin for generating an asset manifest with grouped entry chunks
 */
declare class WebpackEntryManifestPlugin extends Plugin {
    name: 'WebpackEntryManifestPlugin';
    constructor(options?: WebpackEntryManifestPlugin.Options);
}

declare namespace WebpackEntryManifestPlugin {
    interface Options {
        /**
         * Assets manifest filename
         * @default 'manifest.json'
         */
        filename?: string | undefined;

        /**
         * Assets path map function
         * @default path => path
         */
        map?: ((path: string, chunk: string) => string) | undefined;

        /**
         * Assets path filter function
         * @default () => true
         */
        filter?: ((path: string, chunk: string) => boolean) | undefined;

        /**
         * Assets manifest serialize function
         * @default manifest => JSON.stringify(manifest)
         */
        serialize?: ((manifest: any) => string) | undefined;
    }
}

export = WebpackEntryManifestPlugin;

Additional Details

  • Last updated: Fri, 02 Jul 2021 18:05:28 GMT
  • Dependencies: @types/webpack
  • Global values: none

Credits

These definitions were written by Piotr Błażejewicz.

2.0.3

8 months ago

2.0.5

6 months ago

2.0.4

7 months ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

4 years ago