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" + ] } } }