From ca3a6d0657a95c464af672594d50e556d70a7019 Mon Sep 17 00:00:00 2001 From: Reid Miller Date: Thu, 29 Jun 2023 15:44:18 -0400 Subject: [PATCH] Added sourceMap to tsconfig.json Enabling sourceMap made debugging in VS Code out-of-the-box easier. See https://www.typescriptlang.org/tsconfig#sourceMap --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 0810d61..031d432 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,6 +6,7 @@ "module": "commonjs", "outDir": "dist", "rootDir": "src", + "sourceMap": true, "strict": true, "target": "es2019" },