From d5ff89d8bb2e4e91bfe9c871fecc1d12bc45e08c Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Fri, 2 Feb 2024 19:57:46 -0600 Subject: [PATCH] feat: Add sourcemaps to tsconfig This feature is needed by the VSCode debugger. --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 8a9ea50..c4b0912 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,9 @@ "outDir": "./lib", "strict": true, "noImplicitAny": false, - "esModuleInterop": true + "esModuleInterop": true, + "sourceMap": true, + "lib": ["esnext", "dom"] }, "include": ["src/**/*", "test/**/*"], "exclude": ["node_modules", "**/*.test.ts"]