UNPKG

vite-plugin-codegen

Version:

A plugin for Vite (v4 and higher) to generate useful modules at bundle-time.

7 lines (6 loc) 194 B
import type { Plugin } from 'vite'; export interface CodegenPluginOptions { outDir?: string; rootDir?: string; } export default function codegen(options?: CodegenPluginOptions): Plugin;