Fix TypeScript parameter property crash in Node strip-only mode

oauth.server.ts used a TypeScript parameter property (`public code: string`
in constructor) which is not supported by Node.js v25's strip-only TypeScript
mode. This caused the journal to crash-loop on startup after seeding OAuth
clients.

Also enable `erasableSyntaxOnly` in tsconfig.base.json so `pnpm typecheck`
catches any future use of non-erasable TypeScript syntax.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ullrich Schäfer 2026-04-12 14:00:00 +02:00
parent fda376267c
commit e69f93800b
2 changed files with 4 additions and 4 deletions

View file

@ -264,10 +264,9 @@ export async function getAuthenticatedUser(request: Request) {
// --- Error type ---
export class OAuthError extends Error {
constructor(
public code: string,
message: string,
) {
code: string;
constructor(code: string, message: string) {
super(message);
this.code = code;
}
}