mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 05:43:55 +00:00
24 lines
621 B
JSON
24 lines
621 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/*"]
|
|
}
|
|
]
|
|
}
|
|
}
|