From ba4870b6ce413c3e1509a99c8d18e865c16a6be4 Mon Sep 17 00:00:00 2001
From: Marcus Schiesser <mail@marcusschiesser.de>
Date: Thu, 1 Feb 2024 16:03:13 +0700
Subject: [PATCH] fix: type-check

---
 e2e/tsconfig.json | 18 +++++++++++-------
 tsconfig.json     |  2 ++
 2 files changed, 13 insertions(+), 7 deletions(-)

diff --git a/e2e/tsconfig.json b/e2e/tsconfig.json
index ce21a4de..17aef9c5 100644
--- a/e2e/tsconfig.json
+++ b/e2e/tsconfig.json
@@ -1,12 +1,16 @@
 {
-  "extends": "../../../tsconfig.json",
   "compilerOptions": {
-    "tsBuildInfoFile": "./lib/.e2e.tsbuildinfo",
+    "target": "es2019",
+    "module": "esnext",
+    "moduleResolution": "node",
+    "strict": true,
+    "resolveJsonModule": true,
+    "skipLibCheck": true,
+    "declaration": false,
+    "esModuleInterop": true,
+    "forceConsistentCasingInFileNames": true,
+    "incremental": true,
+    "tsBuildInfoFile": "./lib/.tsbuildinfo",
   },
   "include": ["./**/*.ts"],
-  "references": [
-    {
-      "path": "..",
-    },
-  ],
 }
diff --git a/tsconfig.json b/tsconfig.json
index dbc05655..cd48a6cf 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,6 +1,7 @@
 {
   "compilerOptions": {
     "target": "es2019",
+    "module": "esnext",
     "moduleResolution": "node",
     "strict": true,
     "resolveJsonModule": true,
@@ -9,6 +10,7 @@
     "esModuleInterop": true,
     "forceConsistentCasingInFileNames": true,
     "incremental": true,
+    "tsBuildInfoFile": "./lib/.tsbuildinfo",
   },
   "include": [
     "create-app.ts",
-- 
GitLab