Skip to content

Commit

Permalink
Fix the type linting command to actually check the relevant types
Browse files Browse the repository at this point in the history
Disabling the checks for lib files will hide typescript errors in the
stylelint type definitions, as those are loaded as a lib type when
type-checking type-test.ts
  • Loading branch information
stof committed Sep 20, 2022
1 parent 6edbbdf commit de5a7e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"skipLibCheck": false,
"typeRoots": ["./types", "./node_modules/@types"]
},
"include": ["lib", "types", "package.json"],
Expand Down

0 comments on commit de5a7e1

Please sign in to comment.