TSexamples/nestjs/src/main.tsts212 Bb223220bimport { NestFactory } from "@nestjs/core"; import { AppModule } from "./app.module.js"; async function bootstrap() { const app = await NestFactory.create(AppModule); await app.listen(3000); } bootstrap();