From 01d5782966c17b2386d6b971e3fad916c42cd900 Mon Sep 17 00:00:00 2001 From: Sam Vervaeck Date: Sat, 6 Jun 2020 19:29:56 +0200 Subject: [PATCH] tsc: Disable code emission in its entirity Webpack will handle code generation. --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 71a6d4e9c..430c9b0bc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "target": "es2017", "module": "commonjs", - "outDir": "./lib", + "noEmit": true, "strict": true, "esModuleInterop": true, "sourceMap": true,