UNPKG

@nfps.dev/rollup-plugin-microweb

Version:

Rollup plugin for bundling and minifying NFP TypeScript projects

6 lines (5 loc) 355 B
import type { OutputPlugin } from 'rollup'; import { type RollupTypescriptPluginOptions } from '@rollup/plugin-typescript'; export interface MicroWebConfig extends Pick<RollupTypescriptPluginOptions, 'include' | 'exclude' | 'tsconfig' | 'compilerOptions' | 'typescript'> { } export declare function microWeb(gc_microweb?: MicroWebConfig): OutputPlugin[];