From c83be7b8f449aaf28739ec09b971accd54e3bc65 Mon Sep 17 00:00:00 2001 From: Peter Kofler Date: Wed, 29 Nov 2023 12:10:00 +0100 Subject: [PATCH] sourceMap must be true for coverage to work with correct line numbers. --- TypeScript/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TypeScript/tsconfig.json b/TypeScript/tsconfig.json index 82647120..d2922795 100644 --- a/TypeScript/tsconfig.json +++ b/TypeScript/tsconfig.json @@ -4,7 +4,7 @@ "target": "es5", "strict": true, "noImplicitAny": false, - "sourceMap": false, + "sourceMap": true, "baseUrl": "./", "resolveJsonModule": true, "esModuleInterop": true,