Ts Screener [new] Link
# Install npm install -g ts-screener Run in project ts-screener --include "src/**/*.ts" --target-coverage 90 JSON output ts-screener --json > report.json Fail on implicit any ts-screener --no-implicit-any ✅ Example Output 📊 TypeScript Screener Report ✅ Files scanned: 124 🎯 Type coverage: 94.2% ⚠️ Total 'any' usage: 3 ❓ Missing type annotations: 12 🏁 Status: PASSED ✅
📄 src/api/client.ts Missing types: Missing type: data, Missing type: config 'any' usage count: 2 This gives you a production-ready, extensible TypeScript quality gate. Want me to add a or IDE plugin next? ts screener
let anyCount = 0; let typedSymbols = 0; let totalSymbols = 0; const missingTypes: string[] = []; const implicitAnyLines: number[] = []; # Install npm install -g ts-screener Run in