- Add comprehensive IPC handlers for database operations like books, chapters, characters, and conversations. - Implement local database initialization and user data encryption. - Update preload script paths for consistent environment handling. - Modify `page.tsx` to initialize local database within Electron environment. - Add new dependencies including `node-sqlite3-wasm` and `electron-rebuild`.
31 lines
528 B
JSON
31 lines
528 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "node16",
|
|
"moduleResolution": "node16",
|
|
"target": "ES2022",
|
|
"outDir": "dist/electron",
|
|
"rootDir": "electron",
|
|
"lib": ["ES2022"],
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"noEmit": false
|
|
},
|
|
"include": [
|
|
"electron/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"src",
|
|
".next",
|
|
"out",
|
|
"lib",
|
|
"components",
|
|
"app",
|
|
"context",
|
|
"electron/preload.ts"
|
|
]
|
|
}
|