24 lines
474 B
JSON
24 lines
474 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/nest-cli",
|
|
"collection": "@nestjs/schematics",
|
|
"sourceRoot": "src",
|
|
"compilerOptions": {
|
|
"assets": [
|
|
"assets/**/*"
|
|
],
|
|
"watchAssets": true,
|
|
"deleteOutDir": true,
|
|
"builder": "swc",
|
|
"typeCheck": true,
|
|
"plugins": [
|
|
{
|
|
"name": "@nestjs/swagger",
|
|
"options": {
|
|
"introspectComments": true,
|
|
"controllerKeyOfComment": "summary"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|