UNPKG

@plugin-light/project-config-pixui

Version:
25 lines (24 loc) 451 B
export type IOptions = { /** * apps.json 和 appsettings.json 文件所在目录 */ appSettingDir: string; /** * tsx 相关 loader 排除路径 */ tsxLoaderExclude?: RegExp; /** * 启动端口 */ port?: number; /** * 是否使用 tailwindcss */ useTailwind?: boolean; }; export type AppDef = { name: string; template?: string; entry?: string; output?: string; };