From 483c3f0857591651f5974351d241d8bbe247f712 Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 9 Jun 2025 11:57:36 +0200 Subject: [PATCH] Disable typescript sourcemap to get a valid sourcemap (#232) --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index ff453fb4..50c23024 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,7 @@ "module": "esnext", "target": "ESNext", "lib": ["es6", "dom","es2015", "es2016", "es2017", "es2020"], - "sourceMap": true, + "sourceMap": false, "allowJs": false, "jsx": "react-jsx", "moduleResolution": "node",