File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -304,7 +304,15 @@ export interface CSSModulesConfig {
304
304
/** The pattern to use when renaming class names and other identifiers. Default is `[hash]_[local]`. */
305
305
pattern ?: string ,
306
306
/** Whether to rename dashed identifiers, e.g. custom properties. */
307
- dashedIdents ?: boolean
307
+ dashedIdents ?: boolean ,
308
+ /** Whether to enable hashing for `@keyframes`. */
309
+ animation ?: boolean ,
310
+ /** Whether to enable hashing for CSS grid identifiers. */
311
+ grid ?: boolean ,
312
+ /** Whether to enable hashing for custom identifiers. */
313
+ customIdents ?: boolean ,
314
+ /** Whether to require at least one class or id selector in each rule. */
315
+ pure ?: boolean
308
316
}
309
317
310
318
export type CSSModuleExports = {
You can’t perform that action at this time.
0 commit comments