From f2f37849babdc5ac3317e12d45a1ca86048e7a04 Mon Sep 17 00:00:00 2001 From: How Bizarre Date: Tue, 9 Jul 2024 09:54:47 +0300 Subject: [PATCH] chore: Update tsconfig.config.json with "noEmit" option --- tsconfig.config.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.config.json b/tsconfig.config.json index 4c1c633..279d980 100644 --- a/tsconfig.config.json +++ b/tsconfig.config.json @@ -3,6 +3,7 @@ "include": ["vite.config.ts"], "compilerOptions": { "composite": true, - "types": ["node", "bootstrap", "vite/client"] + "types": ["node", "bootstrap", "vite/client"], + "noEmit": false } }