opencode_offline/packages/opencode/tsconfig.json

24 lines
621 B
JSON
Raw Normal View History

2025-05-18 09:31:42 +08:00
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/bun/tsconfig.json",
2025-08-03 06:50:19 +08:00
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "@opentui/solid",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
2025-10-11 05:37:03 +08:00
"types": [],
"noUncheckedIndexedAccess": false,
"customConditions": ["browser"],
"paths": {
"@/*": ["./src/*"],
"@tui/*": ["./src/cli/cmd/tui/*"]
},
2026-03-11 00:56:30 +08:00
"plugins": [
{
"name": "@effect/language-service",
"transform": "@effect/language-service/transform",
"namespaceImportPackages": ["effect", "@effect/*"]
}
]
2025-08-03 06:50:19 +08:00
}
2025-05-18 09:31:42 +08:00
}