@types/worker-plugin
TypeScript icon, indicating that this package has built-in type declarations

5.0.4 • Public • Published

Installation

npm install --save @types/worker-plugin

Summary

This package contains type definitions for worker-plugin (https://github.com/GoogleChromeLabs/worker-plugin).

Details

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

index.d.ts

import * as webpack from "webpack";

export = WorkerPlugin;

declare class WorkerPlugin extends webpack.Plugin {
    constructor(options?: WorkerPlugin.Options);
}

declare namespace WorkerPlugin {
    interface Options {
        filename?: string | undefined;
        chunkFilename?: string | undefined;
        globalObject?: false | string | undefined;
        plugins?: Array<string | webpack.Plugin> | undefined;
        /**
         * If set to `true`, this option enables the bundling of [SharedWorker](https://developer.mozilla.org/en-US/docs/Web/API/SharedWorker)
         */
        sharedWorker?: boolean | undefined;
        /**
         * If set to `false`, this option disables the bundling of [Worker].
         * Intended to be used with `{ sharedWorker: true }` to allow bundling of [SharedWorker] only without also bundling [Worker].
         */
        worker?: boolean | undefined;
        preserveTypeModule?: boolean | undefined;
        /**
         * Normally, WorkerPlugin will transform `new Worker('./a.js', { type: 'module' })`
         * to completely remove the `type` option, outputting something like `new Worker('a.worker.js')`.
         * This allows the plugin to compile Module Workers to Classic Workers, which are supported in all browsers.
         */
        workerType?: string | undefined;
    }
}

Additional Details

  • Last updated: Tue, 07 Nov 2023 15:11:36 GMT
  • Dependencies: @types/webpack

Credits

These definitions were written by Artur Androsovych, and Piotr Błażejewicz.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/worker-plugin

Weekly Downloads

1,893

Version

5.0.4

License

MIT

Unpacked Size

5.59 kB

Total Files

5

Last publish

Collaborators

  • types