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
+5 -6
View File
@@ -1,13 +1,12 @@
{
"extends": "../../tsconfig.common.json",
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "Node16",
"moduleResolution": "Node16",
"allowSyntheticDefaultImports": true,
"target": "esnext",
"module": "node16",
"moduleResolution": "node16",
"noImplicitReturns": false, //TODO: fix this
"allowJs": true,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["vitest/globals"],
"outDir": "dist",
"experimentalDecorators": true,