bracket-backend/nest-cli.json
2025-02-14 17:14:07 +01:00

24 lines
507 B
JSON

{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"entryFile": "app",
"compilerOptions": {
"builder": "swc",
"deleteOutDir": true,
"plugins": [
{
"name": "@nestjs/swagger",
"options": {
"dtoFileNameSuffix": [
".dto.ts",
".entity.ts",
".response.ts",
".payload.ts"
],
"introspectComments": true
}
}
]
}
}