From b254025462333d8d79f560e7ff9d94a3cc54f4d2 Mon Sep 17 00:00:00 2001 From: AlexIchenskiy Date: Thu, 11 Jul 2024 11:56:38 +0200 Subject: [PATCH] Fix: Disable source map generation --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index bb28c93..828dd58 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,7 @@ "module": "esnext", "lib": ["DOM", "ES6"], "declaration": true, - "sourceMap": true, + "sourceMap": false, "outDir": "./dist", "moduleResolution": "node", "esModuleInterop": true,