mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-18 18:16:25 +00:00
30 lines
770 B
JSON
30 lines
770 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/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "@effect/language-service",
|
|
"transform": "@effect/language-service/transform",
|
|
"namespaceImportPackages": ["effect", "@effect/*"]
|
|
}
|
|
],
|
|
"outDir": "dist/types",
|
|
"rootDir": ".",
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true
|
|
},
|
|
"include": ["src"]
|
|
}
|