Skip to content

Commit

Permalink
disable no implicit any for #21
Browse files Browse the repository at this point in the history
  • Loading branch information
mfornos committed May 27, 2024
1 parent efc95a1 commit ad9acd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tsconfig.docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true
"skipLibCheck": true,
"noImplicitAny": false
},
"include": [
"packages/**/src/**/*"
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true
"skipLibCheck": true,
"noImplicitAny": false
},
"include": [
"packages/**/src/**/*"
Expand Down

0 comments on commit ad9acd9

Please sign in to comment.