From ac1952f05b8026dcb6bc9a50e9f676958437d98e Mon Sep 17 00:00:00 2001 From: Fleny Date: Sun, 14 Jul 2024 19:59:55 +0200 Subject: [PATCH] fix: tsconfig.json (#3734) * Update tsconfig.json * Remove allowJS --- tsconfig.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 8ff23b94d..b38130b71 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,11 @@ { "extends": "tsconfig/base.json", + "compilerOptions": { + "noEmit": true, + "incremental": false, + "tsBuildInfoFile": null, + "rootDir": null, + "outDir": null + }, "include": ["."] }