From 48fbf17b68134c632e3a2f0cf2f66c8cc6ddb542 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 (blacksmithgu#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",