feat: Implement initial personal knowledge management system with vector search and MCP server integration.

This commit is contained in:
CodingInCarhartts
2025-12-14 12:31:01 -08:00
commit 22aeab952d
10 changed files with 1532 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"declaration": true,
"outDir": "./dist",
"rootDir": "./src",
"types": ["bun-types"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "tests"]
}