vite-plugin-rttist
Version:
RTTIST plugin adding support for advanced reflection features to Vite
15 lines (12 loc) • 357 B
TypeScript
import { Plugin } from 'vite';
type RttistPluginOptions = {
packageInfo: {
name: string;
rootDir: string;
};
projectRoot: string;
handleTranspilation?: boolean;
tsRootDir?: string;
};
declare function rttistPlugin(pluginOptions: RttistPluginOptions): Promise<Plugin>;
export { type RttistPluginOptions, rttistPlugin };