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.

Update directories coverd by TS

+2 -3
+2 -3
tsconfig.json
··· 5 5 "moduleResolution": "NodeNext", 6 6 "lib": ["ES2023"], 7 7 "outDir": "./dist", 8 - "rootDir": "./src", 9 8 "strict": true, 10 9 "esModuleInterop": true, 11 10 "skipLibCheck": true, ··· 20 19 "noFallthroughCasesInSwitch": true, 21 20 "allowSyntheticDefaultImports": true 22 21 }, 23 - "include": ["src/**/*"], 24 - "exclude": ["node_modules", "dist", "tests"] 22 + "include": ["src/**/*", "tests/**/*"], 23 + "exclude": ["node_modules", "dist"] 25 24 }