YM
2025-08-07 e5c64590b336221f132ed28ae4ae6dca3e03055c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { FilterPattern } from '@rollup/pluginutils';
 
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;
};
 
export { Options as O };