diff --git a/apps/quiz-zone/src/main.ts b/apps/quiz-zone/src/main.ts index 25fced3..9db9b9e 100644 --- a/apps/quiz-zone/src/main.ts +++ b/apps/quiz-zone/src/main.ts @@ -6,4 +6,5 @@ async function bootstrap() { await app.listen(process.env.PORT ?? 3000); } + bootstrap(); diff --git a/apps/quiz-zone/tsconfig.json b/apps/quiz-zone/tsconfig.json index 347d992..8ab9dc6 100644 --- a/apps/quiz-zone/tsconfig.json +++ b/apps/quiz-zone/tsconfig.json @@ -17,11 +17,6 @@ "noImplicitAny": false, "strictBindCallApply": false, "forceConsistentCasingInFileNames": false, - "noFallthroughCasesInSwitch": false, - "esModuleInterop": true, - "paths": { - "@shared/*": ["../shared/src/*"] - } - }, - "references": [{ "path": "../../packages/shared" }] + "noFallthroughCasesInSwitch": false + } }