Skip to content

Commit

Permalink
Merge pull request #48 from DushanSenadheera/dev
Browse files Browse the repository at this point in the history
fix type erros
  • Loading branch information
DushanSenadheera committed May 12, 2024
2 parents dadb2c9 + d1181b8 commit 84ff1b9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"noImplicitAny": false,

/* Bundler mode */
"moduleResolution": "bundler",
Expand All @@ -16,8 +17,8 @@

/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
Expand Down

0 comments on commit 84ff1b9

Please sign in to comment.