mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
- Add comprehensive TUI interface with React Ink components - Implement session management, model selection, and command dialogs - Add theme system with customizable colors and styling - Integrate with existing opencode server and SDK - Add todo management and file browsing capabilities - Include proper TypeScript support and error handling
14 lines
380 B
JSON
14 lines
380 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig.json",
|
|
"extends": "@tsconfig/node22/tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"module": "nodenext",
|
|
"declaration": true,
|
|
"moduleResolution": "nodenext",
|
|
"lib": ["es2022", "dom", "dom.iterable"],
|
|
"customConditions": ["development"]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["src/gen"]
|
|
}
|