fix: .js toevoegen aan imports

This commit is contained in:
Tibo De Peuter 2025-03-30 15:28:22 +02:00
parent 7ad808cf3b
commit 739bd190ab
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
7 changed files with 9 additions and 9 deletions

View file

@ -6,8 +6,8 @@ import * as express from 'express';
import * as jwt from 'jsonwebtoken';
import { AuthenticatedRequest } from './authenticated-request.js';
import { AuthenticationInfo } from './authentication-info.js';
import { UnauthorizedException } from '../../exceptions/unauthorized-exception';
import { ForbiddenException } from '../../exceptions/forbidden-exception';
import { UnauthorizedException } from '../../exceptions/unauthorized-exception.js';
import { ForbiddenException } from '../../exceptions/forbidden-exception.js';
const JWKS_CACHE = true;
const JWKS_RATE_LIMIT = true;