@plugin-light/project-config-pixui
Version:
开箱即用的项目配置,适用于 pixui 项目
25 lines (24 loc) • 451 B
TypeScript
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;
};