apply indent rules to config files as well

This commit is contained in:
Thom Werring 2023-10-27 18:32:36 +02:00
parent 6d7b0220a1
commit 3d74ab5cc1
3 changed files with 19 additions and 10 deletions

View file

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

View file

@ -1,4 +1,9 @@
{ {
"extends": "./tsconfig.json", "extends": "./tsconfig.json",
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"] "exclude": [
"node_modules",
"test",
"dist",
"**/*spec.ts"
]
} }

View file

@ -23,8 +23,12 @@
"strict": true, "strict": true,
"noUncheckedIndexedAccess": true, "noUncheckedIndexedAccess": true,
"paths": { "paths": {
"@/*": ["./src/*"], "@/*": [
"@": ["./src/main.ts"], "./src/*"
],
"@": [
"./src/main.ts"
]
} }
} }
} }