diff --git a/web/tsconfig.json b/web/tsconfig.json index ab774130..8a02a4e9 100644 --- a/web/tsconfig.json +++ b/web/tsconfig.json @@ -14,11 +14,12 @@ "@pezkuwi/theme": ["../shared/theme"], "@pezkuwi/types": ["../shared/types"] }, - "noImplicitAny": false, - "noUnusedParameters": false, + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, "skipLibCheck": true, - "allowJs": true, - "noUnusedLocals": false, - "strictNullChecks": false + "allowJs": false, + "noUnusedLocals": true, + "noUnusedParameters": true } }