bracket-backend/nest-cli.json

17 lines
459 B
JSON
Raw Normal View History

2025-02-07 12:47:58 +01:00
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"entryFile": "app",
"compilerOptions": {
"deleteOutDir": true,
"plugins": [{
"name": "@nestjs/swagger",
"options": {
"dtoFileNameSuffix": [".dto.ts", ".entity.ts", ".response.ts", ".payload.ts"],
"introspectComments": true
}
}]
}
}