UNPKG

@wrench/roll-typescript

Version:

plugin for bundling TypeScript with support of modular output and declaration bundle

12 lines (10 loc) 425 B
import { OutputOptions } from "rollup"; import { CompilerOptions } from "typescript"; import { ProjectHost } from "../host"; /** * Create host for the particular output options. * @param host - project host transforming code. * @param output - output options. * @param options - base options. */ export declare function forkHostByOutput(output: OutputOptions, host: ProjectHost, options: CompilerOptions): ProjectHost;