Files
neuron/packages/neuron/tsconfig.json
T
will.anderson 04fb336eb3 feat(neuron): rung-zero live - first conversation on pure-Neuron stack
- kernel/graph: nodes+edges append-only store
- conversation: chained turns, memory node, fold-based reads
- session/sessions: durable admission inbox, promotion, serialized runner,
  eager tool settlement, provider/dialect/transform injected at composition
- provider/dialects: raw-wire anthropic + openai-compatible, registry
- llm/stream, tools(bash/read/write), auth(local claims), boot composition
- providers resolve from ~/.config/neuron/providers.json - no baked vendors
2026-08-22 21:20:42 -05:00

16 lines
369 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/bun/tsconfig.json",
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "@neuron-tui/solid",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"types": [],
"customConditions": ["browser"],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src/**/*"]
}