From 51b57fe46fead9c58dee527b185033eaa6949cb6 Mon Sep 17 00:00:00 2001
From: Marcus Schiesser <mail@marcusschiesser.de>
Date: Thu, 1 Feb 2024 14:33:29 +0700
Subject: [PATCH] fix: don't create d.ts files for create-llama

---
 tsconfig.json | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tsconfig.json b/tsconfig.json
index ecd08fe5..dbc05655 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,12 +1,14 @@
 {
-  "extends": "../../tsconfig.json",
   "compilerOptions": {
     "target": "es2019",
     "moduleResolution": "node",
     "strict": true,
     "resolveJsonModule": true,
-    "esModuleInterop": true,
     "skipLibCheck": true,
+    "declaration": false,
+    "esModuleInterop": true,
+    "forceConsistentCasingInFileNames": true,
+    "incremental": true,
   },
   "include": [
     "create-app.ts",
-- 
GitLab