Files
ERitors-Scribe-Desktop/tsconfig.preload.json
natreex de03dedaf0 Add Electron main process with token management and navigation setup
- Implement main and login windows for Electron.
- Integrate `electron-store` for secure token storage and management.
- Setup IPC handlers for authentication.
- Update dependencies to support Electron, including `vite`, `react-router-dom`, and plugins.
2025-11-16 13:55:08 -05:00

12 lines
206 B
JSON

{
"extends": "./tsconfig.electron.json",
"compilerOptions": {
"module": "CommonJS",
"moduleResolution": "node",
"outDir": "dist/electron"
},
"include": [
"electron/preload.ts"
]
}