From 3b54dde2d63e84bb870b8a80fac6349ac56a0dc0 Mon Sep 17 00:00:00 2001 From: Jan-Stefan Janetzky Date: Sat, 16 Mar 2024 20:22:52 +0100 Subject: [PATCH] removing inline source maps as this option can't be combined sourceMap and inlineSourceMap don't go well together. --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 075e2ccc..b20ddc9a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "baseUrl": "src", "sourceMap": true, - "inlineSourceMap": true, + "inlineSourceMap": false, "inlineSources": true, "module": "ESNext", "target": "es2018",