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": {
|
2025-10-06 22:53:35 +00:00
|
|
|
"jsx": "preserve",
|
|
|
|
|
"jsxImportSource": "@opentui/solid",
|
|
|
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
2025-10-10 21:37:03 +00:00
|
|
|
"types": [],
|
2025-10-14 05:33:25 +00:00
|
|
|
"noUncheckedIndexedAccess": false,
|
2025-10-06 22:53:35 +00:00
|
|
|
"customConditions": ["browser"],
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./src/*"],
|
2026-04-16 06:03:03 +00:00
|
|
|
"@test/*": ["./test/*"]
|
2026-05-01 03:20:20 +00:00
|
|
|
}
|
2025-08-02 22:50:19 +00:00
|
|
|
}
|
2025-05-18 01:31:42 +00:00
|
|
|
}
|