diff --git a/backend/src/index.ts b/backend/src/index.ts index d1379c04f..ad25f7821 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -2,7 +2,7 @@ import dotenv from "dotenv"; dotenv.config(); import express from "express"; // eslint-disable-next-line @typescript-eslint/no-var-requires -require("express-async-errors"); +import "express-async-errors"; import helmet from "helmet"; import cors from "cors"; import { initLogger, logger } from "./utils/logging";