style: address lint issues

This commit is contained in:
Kamil Myśliwiec
2025-05-30 10:56:04 +02:00
parent 04d1bc5304
commit daa429d251
2 changed files with 5 additions and 2 deletions

View File

@@ -4,4 +4,7 @@ import { LongLivingAppModule } from './long-living-app.module';
async function bootstrap() {
await repl(LongLivingAppModule);
}
bootstrap();
bootstrap().catch(err => {
console.error('Error during bootstrap:', err);
process.exit(1);
});