inkos/tsconfig.json
majx_mac f4a5a772a9 feat: initial InkOS multi-agent novel production system
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
2026-03-11 23:42:52 +08:00

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"]
}