- Implement `LoginPage`, `LoginForm`, and `SocialForm` components. - Add language toggle and dynamic title support. - Update `tsconfig.electron.json` for stricter settings. - Add `electron-store` and associated types for token storage. - Update `package.json` scripts and dependencies for Electron compatibility.
26 lines
446 B
JSON
26 lines
446 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"
|
|
]
|
|
}
|