Files
core/nest-cli.json
2021-09-08 13:51:55 +08:00

30 lines
590 B
JSON

{
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"plugins": [
{
"name": "@nestjs/graphql",
"options": {
"typeFileNameSuffix": [
".input.ts",
".args.ts",
".dto.ts",
".model.ts"
]
}
},
{
"name": "@nestjs/swagger",
"options": {
"classValidatorShim": false,
"introspectComments": true,
"dtoFileNameSuffix": [
".dto.ts",
".model.ts"
]
}
}
]
}
}