cloudaxe-opencode/packages/opencode/tsconfig.json

17 lines
409 B
JSON
Raw Normal View History

2025-05-18 01:31:42 +00:00
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/bun/tsconfig.json",
2025-08-02 22:50:19 +00:00
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "@opentui/solid",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
2025-10-10 21:37:03 +00:00
"types": [],
"noUncheckedIndexedAccess": false,
"customConditions": ["browser"],
"paths": {
"@/*": ["./src/*"],
2026-04-16 06:03:03 +00:00
"@test/*": ["./test/*"]
}
2025-08-02 22:50:19 +00:00
}
2025-05-18 01:31:42 +00:00
}