refactor: collect common tsconfig (#1794)

* refactor: collect common tsconfig settings

* chore: module and target should be lower case
This commit is contained in:
Alex Christoffer Rasmussen
2025-09-26 18:41:10 +02:00
parent 80e4dc0941
commit 1dfe5c980d
7 changed files with 29 additions and 65 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"strict": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowUnreachableCode": false
}
}