From e6d68accab34103a08cdaa6e8dd51f7e0e76f4a9 Mon Sep 17 00:00:00 2001 From: Jonathan Barrow Date: Mon, 17 Jul 2023 19:34:57 -0400 Subject: [PATCH] Enable source maps for compiled JS --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index be7c906..5fc610d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { "strict": true, + "sourceMap": true, "resolveJsonModule": true, "module": "commonjs", "esModuleInterop": true,