mirror of
https://github.com/chmouel/liseur-desktop.git
synced 2026-08-26 07:51:43 +00:00
Electron + SolidJS + electron-vite app with three strictly separated layers: a small main process, a sandboxed Node-free renderer, and a worker utilityProcess that owns all data work. The library screen serves 5,000 deterministic fake books through the typed worker protocol with a virtualized cover grid, local-first instant search, filters, sorting, keyboard navigation, and light/dark themes.
16 lines
311 B
JSON
16 lines
311 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"types": ["node"],
|
|
"lib": ["ES2023", "DOM"]
|
|
},
|
|
"include": [
|
|
"src/main/**/*",
|
|
"src/preload/**/*",
|
|
"src/worker/**/*",
|
|
"src/shared/**/*",
|
|
"electron.vite.config.ts",
|
|
"playwright.config.ts",
|
|
"tests/e2e/**/*"
|
|
]
|
|
}
|