mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-06 08:21:50 +00:00
Removed the @effect/language-service dependency from packages/opencode and packages/core to simplify the build and reduce unnecessary complexity. Refactored tool output handling to use a structured content array instead of flat fields. This enables richer tool responses with mixed content types (text, files) and better structured data support for future extensibility.
17 lines
450 B
JSON
17 lines
450 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "@tsconfig/bun/tsconfig.json",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "@opentui/solid",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"types": [],
|
|
"noUncheckedIndexedAccess": false,
|
|
"customConditions": ["browser"],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@tui/*": ["./src/cli/cmd/tui/*"],
|
|
"@test/*": ["./test/*"]
|
|
}
|
|
}
|
|
}
|