UNPKG

unplugin-lightningcss

Version:

Lightning CSS integration for Vite, Rollup, esbuild, Webpack, Vue CLI, and more.

17 lines (16 loc) 459 B
import { FilterPattern } from "unplugin"; import { TransformOptions } from "lightningcss"; //#region src/core/options.d.ts type Options = { include?: FilterPattern; exclude?: FilterPattern; enforce?: "pre" | "post" | undefined; options?: Omit<TransformOptions<any>, "code" | "filename">; /** * Whether to export the transformed CSS as a default string export. * @default false */ asString?: boolean; }; //#endregion export { Options as t };