| 17 | const DEBUG = env.DEBUG |
| 18 | |
| 19 | export interface LoaderOptions { |
| 20 | /** |
| 21 | * The base directory to scan for class candidates. |
| 22 | * |
| 23 | * Defaults to the current working directory. |
| 24 | */ |
| 25 | base?: string |
| 26 | |
| 27 | /** |
| 28 | * Optimize and minify the output CSS. |
| 29 | */ |
| 30 | optimize?: boolean | { minify?: boolean } |
| 31 | } |
| 32 | |
| 33 | interface CacheEntry { |
| 34 | mtimes: Map<string, number> |
nothing calls this directly
no outgoing calls
no test coverage detected