From 7f8338b1edc3649337b43dd308769e3c86c2ff58 Mon Sep 17 00:00:00 2001 From: Jan-Stefan Janetzky Date: Sat, 23 Mar 2024 08:42:32 +0100 Subject: [PATCH] removing inline source maps as this option can't be combined (blacksmithgu#2269) (#2269) 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 e05233e9..128187dd 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": "ES2022",