From 272d3ec50a7a3fa3919639dfc91ad1b13489727f Mon Sep 17 00:00:00 2001 From: Mathis Date: Thu, 31 Oct 2024 11:43:38 +0100 Subject: [PATCH] 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. --- nest-cli.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 nest-cli.json diff --git a/nest-cli.json b/nest-cli.json new file mode 100644 index 0000000..f9aa683 --- /dev/null +++ b/nest-cli.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://json.schemastore.org/nest-cli", + "collection": "@nestjs/schematics", + "sourceRoot": "src", + "compilerOptions": { + "deleteOutDir": true + } +}