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

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>

markbennett.ca e1cbcfa4 528dbeac

verified
+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 }