mirror of
https://github.com/Narcooo/inkos
synced 2026-04-21 14:37:16 +00:00
TypeScript monorepo with pnpm workspaces: - packages/core: LLM provider (streaming), 5 agents (architect, writer, continuity-auditor, reviser, radar), pipeline runner with auto-revise, daemon scheduler, state manager, notification dispatch (Telegram, Feishu, WeCom) - packages/cli: Commander.js CLI with init, config, book, write, review, status, radar, daemon (up/down), doctor commands Pipeline: radar → architect → writer → audit → [auto-revise] → review State: current_state.md + particle_ledger.md + pending_hooks.md per book
19 lines
446 B
JSON
19 lines
446 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"lib": ["ES2022"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src"
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|