Skip to content

Commit

Permalink
Fixup tsconfig change
Browse files Browse the repository at this point in the history
  • Loading branch information
Francis Duvivier committed Oct 30, 2024
1 parent d204344 commit 88eb347
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import express from "express";
import { RegisterRoutes } from "./generated/routes.js";
import openapi from "./openapi.js";
import { RegisterRoutes } from "./generated/routes";
import openapi from "./openapi";
import { pinoHttp } from "pino-http";

const app = express();
Expand Down
5 changes: 4 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import app from "./app.js";
import { config } from "dotenv";
import app from "./app";

config();

const port = 8081;

Expand Down

0 comments on commit 88eb347

Please sign in to comment.