UNPKG

vite-plugin-inspect

Version:

Inspect the intermediate state of Vite plugins

18 lines (15 loc) 385 B
import { Plugin } from 'vite'; interface Options { /** * @default 'package.json' */ packageJsonPath?: string; /** * Field name in package.json to merge with Vite's config * * @default 'vite' */ field?: string; } declare function VitePluginPackageConfig(options?: Options): Plugin; export { Options, VitePluginPackageConfig as default };