UNPKG

f2e-server3

Version:

f2e-server 3.0

17 lines (16 loc) 396 B
/** * esbuild React Refresh 插件 * 为 React 组件添加 Fast Refresh 支持 */ import type { Plugin } from 'esbuild'; export interface ReactRefreshPluginOptions { /** * 匹配需要处理的文件 */ include?: RegExp; /** * 排除的文件 */ exclude?: RegExp; } export declare const reactRefreshPlugin: (options?: ReactRefreshPluginOptions) => Plugin;