From c055987006baace5c1015d47564794cc62a00e8b Mon Sep 17 00:00:00 2001 From: Sam Vervaeck Date: Thu, 29 Oct 2020 21:21:40 +0100 Subject: [PATCH] tsc: Enable 'noEmit' in tsconfig.json --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 71a6d4e9c..40023434b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ "target": "es2017", "module": "commonjs", "outDir": "./lib", + "noEmit": true, "strict": true, "esModuleInterop": true, "sourceMap": true,