mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-16 13:05:53 +00:00
* Implement comprehensive user authentication system - Add SSH-first authentication with password fallback - Implement JWT token-based session management (24h expiry) - Create browser-based SSH agent with key storage and signing - Add challenge-response SSH authentication protocol - Integrate PAM for system password authentication - Build comprehensive authentication UI components - Add SSH key manager for key generation and management - Update middleware to support JWT tokens alongside existing auth - Maintain backwards compatibility with existing HQ/remote auth
33 lines
No EOL
740 B
JSON
33 lines
No EOL
740 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"lib": ["ES2020", "dom"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"typeRoots": ["./node_modules/@types"]
|
|
},
|
|
"include": [
|
|
"src/server/**/*",
|
|
"src/shared/**/*",
|
|
"src/types/**/*",
|
|
"src/cli.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"public",
|
|
"src/client/**/*"
|
|
]
|
|
} |