Skip to content

Commit

Permalink
Make web client use less restrictive tsconfig lint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
robknight committed Sep 9, 2024
1 parent 19b8d04 commit bf15124
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions apps/client-web/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@
"jsx": "react-jsx",

/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"strict": true
},
"include": ["src"]
}
5 changes: 1 addition & 4 deletions apps/client-web/tsconfig.node.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@
"noEmit": true,

/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"strict": true
},
"include": ["vite.config.ts"]
}

0 comments on commit bf15124

Please sign in to comment.