NPM Build Utilities @ 0.1.3
    Preparing search index...

    Interface ArgsInternal

    Optional configuration for FileSystemType.minify method.

    0.1.0-alpha

    interface Args {
        css: {
            "clean-css"?: { [key: string]: undefined | null | string | boolean };
            type?: string;
        };
        glob: Partial<FileSystemType.Glob.Args>;
        html: { [key: string]: undefined | null | string | boolean };
        js: {
            esbuild?: { [key: string]: undefined | null | string | boolean };
            putout?: { [key: string]: undefined | null | string | boolean };
            terser?: { [key: string]: undefined | null | string | boolean };
            type?: string;
        };
        json: {};
    }
    Index

    Properties

    Properties

    css: {
        "clean-css"?: { [key: string]: undefined | null | string | boolean };
        type?: string;
    }

    This is a placeholder type for when minifying is implemented in the future. It is a very loose version of (the relevant property in) minify.Options.

    Optional argument overrides passed to FileSystemType.glob while matching paths to minify.

    html: { [key: string]: undefined | null | string | boolean }

    This is a placeholder type for when minifying is implemented in the future. It is a very loose version of (the relevant property in) minify.Options.

    js: {
        esbuild?: { [key: string]: undefined | null | string | boolean };
        putout?: { [key: string]: undefined | null | string | boolean };
        terser?: { [key: string]: undefined | null | string | boolean };
        type?: string;
    }

    This is a placeholder type for when minifying is implemented in the future. It is a very loose version of (the relevant property in) minify.Options.

    json: {}

    This is a placeholder type for when minifying is implemented in the future. It is a very loose version of (the relevant property in) minify.Options.