liseur-desktop/tsconfig.node.json
Chmouel Boudjnah d6ee201699
feat: initial Liseur Desktop foundation and responsive library prototype
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.
2026-08-12 02:25:59 +02:00

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/**/*"
]
}