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,4 +1,9 @@
{
"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,
"noUncheckedIndexedAccess": true,
"paths": {
"@/*": ["./src/*"],
"@": ["./src/main.ts"],
"@/*": [
"./src/*"
],
"@": [
"./src/main.ts"
]
}
}
}