Skip to content

Commit cfbae92

Browse files
committed
fix: linting errors
1 parent 9b85529 commit cfbae92

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/cli/core/ClassnamesGenerator.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ export class ClassnamesGenerator {
402402
let generatedClassGroup = _.get(
403403
this._generatedRegularClassnames,
404404
`${key}.${regularClassGroupKey}`,
405-
) as string[];
405+
) as unknown as string[];
406406

407407
// Duplicate classnames with an important (!) prefix
408408
const generatedClassGroupWithImportantPrefix = generatedClassGroup.map(cls => "!" + cls);

tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"inlineSources": true,
1414
"esModuleInterop": true,
1515
"resolveJsonModule": true,
16-
"strict": true
16+
"strict": true,
17+
"skipLibCheck": true
1718
},
1819
"include": ["src"],
1920
"exclude": ["node_modules", "dist", "es", "lib"]

0 commit comments

Comments
 (0)