From 3d74ab5cc1514ddf4b4e3edbbdb54e9d423da5ad Mon Sep 17 00:00:00 2001 From: Thom Werring Date: Fri, 27 Oct 2023 18:32:36 +0200 Subject: [PATCH] apply indent rules to config files as well --- nest-cli.json | 12 ++++++------ tsconfig.build.json | 9 +++++++-- tsconfig.json | 8 ++++++-- 3 files changed, 19 insertions(+), 10 deletions(-) diff --git a/nest-cli.json b/nest-cli.json index f9aa683..363961e 100644 --- a/nest-cli.json +++ b/nest-cli.json @@ -1,8 +1,8 @@ { - "$schema": "https://json.schemastore.org/nest-cli", - "collection": "@nestjs/schematics", - "sourceRoot": "src", - "compilerOptions": { - "deleteOutDir": true - } + "$schema": "https://json.schemastore.org/nest-cli", + "collection": "@nestjs/schematics", + "sourceRoot": "src", + "compilerOptions": { + "deleteOutDir": true + } } diff --git a/tsconfig.build.json b/tsconfig.build.json index 64f86c6..8a789fd 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,4 +1,9 @@ { - "extends": "./tsconfig.json", - "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] + "extends": "./tsconfig.json", + "exclude": [ + "node_modules", + "test", + "dist", + "**/*spec.ts" + ] } diff --git a/tsconfig.json b/tsconfig.json index f5feb99..7eccf46 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -23,8 +23,12 @@ "strict": true, "noUncheckedIndexedAccess": true, "paths": { - "@/*": ["./src/*"], - "@": ["./src/main.ts"], + "@/*": [ + "./src/*" + ], + "@": [ + "./src/main.ts" + ] } } }