WIP: A simple cli for daily tangled use cases and AI integration. This is for my personal use right now, but happy if others get mileage from it! :)
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Include tests in TypeScript type-checking

Fix issue where test files were excluded from TypeScript compilation,
causing VS Code to catch type errors that npm run typecheck missed.

Changes:
- Add "tests/**/*" to include array in tsconfig.json
- Remove "tests/**/*" from exclude array
- Tests are now type-checked by both build and typecheck scripts
- Tests are emitted to dist/tests/ (harmless locally, can exclude from npm publish later)

This ensures type errors in tests are caught by:
- npm run typecheck (local development)
- npm run build (before commits)
- CI pipeline (prevents broken tests from being merged)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>

+2 -2
+2 -2
tsconfig.json
··· 19 19 "noFallthroughCasesInSwitch": true, 20 20 "allowSyntheticDefaultImports": true 21 21 }, 22 - "include": ["src/**/*"], 23 - "exclude": ["node_modules", "dist", "src/lexicon/**", "tests/**/*"] 22 + "include": ["src/**/*", "tests/**/*"], 23 + "exclude": ["node_modules", "dist", "src/lexicon/**"] 24 24 }