unplugin-element-plus
Version:
<p align="center"> <img width="300px" src="https://user-images.githubusercontent.com/10731096/95823103-9ce15780-0d5f-11eb-8010-1bd1b5910d4f.png"> </p>
29 lines (27 loc) • 662 B
TypeScript
import { FilterPattern } from "unplugin-utils";
//#region src/core/types.d.ts
type Options = {
/**
* RegExp or glob to match files to be transformed
*/
include: FilterPattern
/**
* RegExp or glob to match files to NOT be transformed
*/
exclude: FilterPattern
useSource: boolean
/** replace default locale */
defaultLocale: string
/**
* Array of component names that will not be transformed.
* Can be useful for components that do not have an associated style file.
* Do not include the prefix in the name.
*/
ignoreComponents: string[]
lib: string
prefix: string
format: "cjs" | "esm"
sourceMap: boolean
};
//#endregion
export { Options };