From 0b543fbc535c59eead07c56f6c302f4d6216d955 Mon Sep 17 00:00:00 2001 From: Sam Vervaeck Date: Sat, 13 Jun 2020 19:28:34 +0200 Subject: [PATCH] tsc: Fix TypeScript not emitting files for tests --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 430c9b0bc..71a6d4e9c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "target": "es2017", "module": "commonjs", - "noEmit": true, + "outDir": "./lib", "strict": true, "esModuleInterop": true, "sourceMap": true,