From 58b0ec20f29256eeaf2213414c76ba3543772976 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Tue, 7 Oct 2025 17:37:17 -0700 Subject: [PATCH] fix: update tsconfig to include source maps and declarations --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 58b6fc3..bc58a8a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,8 @@ "extends": "@nhcarrigan/typescript-config", "compilerOptions": { "outDir": "./prod", - "rootDir": "./src" + "rootDir": "./src", + "sourceMap": true, + "declaration": true }, } \ No newline at end of file