NPM Build Utilities @ 0.2.0-alpha.1
    Preparing search index...

    Interface Args

    Optional configuration for Compiler classes.

    0.1.0-alpha

    interface Args {
        postCSS: PostCSS;
        sass: Sass;
        ts: { tidyGlobs?: string | string[] };
    }
    Index

    Properties

    Properties

    postCSS: PostCSS

    Optional default configuration to use when processing css with postCSS.

    0.2.0-alpha

    sass: Sass

    Optional default configuration to use when compiling sass.

    This is a simple re-mapping of sass.Options<"sync"> for better typing and documentation.

    ts: { tidyGlobs?: string | string[] }

    Optional default configuration to use when compiling typescript.

    Type declaration

    • OptionaltidyGlobs?: string | string[]

      This is an array of globs, resolved relative to the tsconfig outDir, to be removed after compilation.

      Used, for example, to delete type-only javascript files.

    0.1.1 — Removed unused ts prop.

    0.1.3 — Added it back.