Add nest-cli.json configuration file

This adds a new configuration file for the Nest CLI to the project. The file specifies the schema, schematics collection, source root directory, and compiler options, including deleting the output directory before building.
This commit is contained in:
Mathis H (Avnyr) 2024-10-31 11:43:38 +01:00
parent 57d9845d19
commit 272d3ec50a
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

8
nest-cli.json Normal file
View File

@ -0,0 +1,8 @@
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"deleteOutDir": true
}
}