diff --git a/server.js b/server.js index 7b54b212..4a8c38ac 100644 --- a/server.js +++ b/server.js @@ -19,5 +19,5 @@ app.use((req, res, next) => { }); app.listen(PORT, () => { - console.log(`[Server] Listening on port ${PORT}.`); + console.log(`[Server] Listening on port ${PORT}.`); }); diff --git a/tsconfig.json b/tsconfig.json index 81d15649..e7e0c22d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,9 +10,7 @@ "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true, - "skipLibCheck": true, + "skipLibCheck": true }, - "include": [ - "core/**/*.ts" - ] + "include": ["core/**/*.ts"] }