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
+1 -14
View File
@@ -1,23 +1,10 @@
{
"extends": "../../tsconfig.common.json",
"compilerOptions": {
"target": "esnext",
"module": "preserve",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noImplicitThis": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"removeComments": true,
"preserveConstEnums": true,
"allowJs": true,