- Add fullscreen crossfade transition for login/logout (300ms fade-out + 400ms fade-in) - Add slide-in-from-right animation for all page switches (Dashboard, Terminal, SSH Manager, Admin, Profile) - Fix TypeScript compilation by adding esModuleInterop to tsconfig.node.json - Pass handleLogout from DesktopApp to LeftSidebar for consistent transition behavior All page transitions now use Tailwind animate-in utilities with 300ms duration for smooth, native-feeling UX
31 lines
905 B
JSON
31 lines
905 B
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
"target": "ES2023",
|
|
"lib": ["ES2023"],
|
|
"module": "nodenext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "nodenext",
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"esModuleInterop": true,
|
|
"noEmit": false,
|
|
"outDir": "./dist/backend",
|
|
"strict": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"noUncheckedSideEffectImports": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"noImplicitReturns": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"allowUnusedLabels": true,
|
|
"allowUnreachableCode": true
|
|
},
|
|
"include": ["src/backend/**/*.ts"]
|
|
}
|