From 36b64603574316283f1829677b8fd6a4739b6d68 Mon Sep 17 00:00:00 2001 From: Tangent Wantwight Date: Sun, 6 Aug 2023 02:40:02 -0400 Subject: [PATCH] noEmit tsc --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index f6bcfc4..c588934 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,8 @@ { "compilerOptions": { "checkJs": true, - "strict": true, - "lib": ["ES6", "DOM"] + "lib": ["ES6", "DOM"], + "noEmit": true, + "strict": true } }