UNPKG

@dafengzhen/vite-plugin-mp

Version:

vite-plugin-mp 使用 Vite 编译微信小程序

23 lines (22 loc) 504 B
import type { Plugin } from 'vite'; export interface WxJsPluginOptions { /** * Whether this is a TypeScript project. * * @default true */ isTsProject?: boolean; /** * Output directory for generated files. * * @default "miniprogram" */ outputDir?: string; /** * Root directory for resolving files. * * @default "miniprogram" */ rootDir?: string; } export default function wxJsPlugin(options?: WxJsPluginOptions): Plugin;