Skip to content

Commit 667a83f

Browse files
jdaltonclaude
andcommitted
Add noUnusedLocals and noUnusedParameters to registry tsconfig
Enables stricter TypeScript checking to catch unused variables and parameters at compile time. This prevents dead code accumulation and potential bugs. Based on learnings from coana-package-manager analysis. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent b4e207f commit 667a83f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

registry/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
"useUnknownInCatchVariables": true,
2525
"verbatimModuleSyntax": false,
2626
"allowSyntheticDefaultImports": true,
27-
"noImplicitAny": false
27+
"noImplicitAny": false,
28+
"noUnusedLocals": true,
29+
"noUnusedParameters": true
2830
},
2931
"include": ["src/**/*.ts", "src/**/*.d.ts"],
3032
"exclude": ["node_modules", "dist", "lib", "test", "src/external/**/*"]

0 commit comments

Comments
 (0)