diff --git a/apps/credential-manager/src/main.ts b/apps/credential-manager/src/main.ts
index 746af793b6c67bfb28ab7bf4bdb69e6baa51aa75..4936407a8a19d52a4391a73f5f12faf6f76b04d8 100644
--- a/apps/credential-manager/src/main.ts
+++ b/apps/credential-manager/src/main.ts
@@ -7,8 +7,6 @@ import { Transport } from '@nestjs/microservices';
 import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger';
 
 import AppModule from './app.module.js';
-// import AllExceptionsFilter from './utils/exceptionsFilter.js';
-// import logger from './utils/logger.js';
 
 const app = await NestFactory.create(AppModule);
 const configService = app.get(ConfigService);
@@ -37,9 +35,4 @@ const document = SwaggerModule.createDocument(app, swaggerConfig);
 SwaggerModule.setup('/swagger', app, document);
 await app.startAllMicroservices();
 
-// const httpAdapter = app.get(HttpAdapterHost);
-// app.useGlobalFilters(new AllExceptionsFilter(httpAdapter));
-
-await app.listen(configService.get('PORT') || 3000, () => {
-  // logger.info(`Listening on Port:${configService.get('PORT')}` || 3000);
-});
+await app.listen(configService.get('PORT') || 3000);
diff --git a/apps/schema-manager/src/main.ts b/apps/schema-manager/src/main.ts
index 746af793b6c67bfb28ab7bf4bdb69e6baa51aa75..4936407a8a19d52a4391a73f5f12faf6f76b04d8 100644
--- a/apps/schema-manager/src/main.ts
+++ b/apps/schema-manager/src/main.ts
@@ -7,8 +7,6 @@ import { Transport } from '@nestjs/microservices';
 import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger';
 
 import AppModule from './app.module.js';
-// import AllExceptionsFilter from './utils/exceptionsFilter.js';
-// import logger from './utils/logger.js';
 
 const app = await NestFactory.create(AppModule);
 const configService = app.get(ConfigService);
@@ -37,9 +35,4 @@ const document = SwaggerModule.createDocument(app, swaggerConfig);
 SwaggerModule.setup('/swagger', app, document);
 await app.startAllMicroservices();
 
-// const httpAdapter = app.get(HttpAdapterHost);
-// app.useGlobalFilters(new AllExceptionsFilter(httpAdapter));
-
-await app.listen(configService.get('PORT') || 3000, () => {
-  // logger.info(`Listening on Port:${configService.get('PORT')}` || 3000);
-});
+await app.listen(configService.get('PORT') || 3000);
diff --git a/apps/shared/nest-cli.json b/apps/shared/nest-cli.json
index 256648114a9983377debfde44bda4368fb045a39..b9af737f405bfea055dcb58728c31d912fef06f3 100644
--- a/apps/shared/nest-cli.json
+++ b/apps/shared/nest-cli.json
@@ -1,5 +1,14 @@
 {
   "$schema": "https://json.schemastore.org/nest-cli",
   "collection": "@nestjs/schematics",
-  "sourceRoot": "src"
+  "sourceRoot": "src",
+  "compilerOptions": {
+    "typeCheck": true,
+    "builder": {
+      "type": "swc",
+      "options": {
+        "swcrcPath": "../../.swcrc"
+      }
+    }
+  }
 }
diff --git a/apps/ssi-abstraction/nest-cli.json b/apps/ssi-abstraction/nest-cli.json
index 256648114a9983377debfde44bda4368fb045a39..b9af737f405bfea055dcb58728c31d912fef06f3 100644
--- a/apps/ssi-abstraction/nest-cli.json
+++ b/apps/ssi-abstraction/nest-cli.json
@@ -1,5 +1,14 @@
 {
   "$schema": "https://json.schemastore.org/nest-cli",
   "collection": "@nestjs/schematics",
-  "sourceRoot": "src"
+  "sourceRoot": "src",
+  "compilerOptions": {
+    "typeCheck": true,
+    "builder": {
+      "type": "swc",
+      "options": {
+        "swcrcPath": "../../.swcrc"
+      }
+    }
+  }
 }
diff --git a/compose/docker-compose.yml b/compose/docker-compose.yml
index de94665317333dbc06d35263a5db49b281a5f0d6..fc6c17a802cb56fc2ab1a731b1f93a3dd72d482a 100644
--- a/compose/docker-compose.yml
+++ b/compose/docker-compose.yml
@@ -15,20 +15,6 @@ services:
       - nats
       - ssi
 
-  # attestation-manager:
-  #   build:
-  #     context: ..
-  #     args:
-  #       - SERVICE=attestation-manager
-  #   init: true
-  #   ports:
-  #     - '3005:3005'
-  #   env_file: ./env/attestation-manager.env
-  #   depends_on:
-  #     - db
-  #     - nats
-  #     - ssi
-
   credential-manager:
     build:
       context: ..