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! :)
10
fork

Configure Feed

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

Exclude generated lexicon code from TypeScript checking

Added src/lexicon/**/* to exclude list in tsconfig.json to skip
type checking generated code. The generated code has compatibility
issues but we only need to import type definitions from it.

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

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