From 931cb0fa7defee1ffc45daefac4209f371f3c95b Mon Sep 17 00:00:00 2001
From: Russell Parker <russell@benchling.com>
Date: Mon, 21 Feb 2022 08:24:09 -0500
Subject: [PATCH] Disable ts config that leads to sourceMappingURL comment in
 transpilation

---
 tsconfig.commonjs.json | 2 +-
 tsconfig.json          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tsconfig.commonjs.json b/tsconfig.commonjs.json
index a50c6cfb6..d016ddeca 100644
--- a/tsconfig.commonjs.json
+++ b/tsconfig.commonjs.json
@@ -5,7 +5,7 @@
         "alwaysStrict": true,
         "noImplicitAny": true,
         "noImplicitThis": true,
-        "sourceMap": true,
+        "sourceMap": false,
         "noUnusedLocals": true,
         "strictNullChecks": true,
         "strictFunctionTypes": true,
diff --git a/tsconfig.json b/tsconfig.json
index 2bc148163..cd095f4f2 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -5,7 +5,7 @@
         "alwaysStrict": true,
         "noImplicitAny": true,
         "noImplicitThis": true,
-        "sourceMap": true,
+        "sourceMap": false,
         "noUnusedLocals": true,
         "strictNullChecks": true,
         "strictFunctionTypes": true,
-- 
GitLab