From 08950749d0e65387cb07ee4b2f3f80b8daabd4d8 Mon Sep 17 00:00:00 2001 From: Sanne Raymaekers Date: Fri, 15 Nov 2024 12:50:42 +0100 Subject: [PATCH] tsconfig.json: generate sourcemaps for typescript files --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 1334a92c..e4b19912 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,6 +6,7 @@ "target": "es5", "downlevelIteration": true, // Needed to allow iteration over some objects like Map() while target is es5 "jsx": "react-jsx", + "sourceMap": true, "allowJs": true, "moduleResolution": "node", "types": ["vitest/globals", "@testing-library/jest-dom"],