Workspaces: config (copied), outreach-core (schema + actions/queries + hard gates), outreach-ai (Gemini client + embeddings copies, profiler and mission-fit-judge agent stubs), outreach-worker (DBOS executor with nightly ingest + hourly expiry workflows), outreach-review (RR7 review queue v0). Initial drizzle migration incl. pgvector extension. Stack contract: Yarn 4.5.0 + Turbo, Node 22.16, Drizzle 0.44.6 + pgvector, DBOS 4.17.6, @google/genai on Vertex, gemini-embedding-001 @1536, React Router v7. Files copied from novelpad-desktop carry provenance headers @ 62c56b87. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
29 lines
699 B
JSON
29 lines
699 B
JSON
{
|
|
"extends": "@novelpad/config/tsconfig.base.json",
|
|
"include": [
|
|
"app/**/*.ts",
|
|
"app/**/*.tsx",
|
|
".react-router/types/**/*"
|
|
],
|
|
"exclude": ["node_modules", "build"],
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
"types": ["node", "vite/client"],
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"rootDirs": [".", "./.react-router/types"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"#~/*": ["./app/*"]
|
|
},
|
|
"esModuleInterop": true,
|
|
"verbatimModuleSyntax": false,
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"noUncheckedIndexedAccess": false
|
|
}
|
|
}
|