From 8b39318037d16919ec4f2226c91e61b6a24a460e Mon Sep 17 00:00:00 2001 From: Josh Creek Date: Fri, 7 Oct 2022 18:52:38 +0100 Subject: [PATCH] build(*): Add sourcemap to tsconfig compilerOptions --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 52a07f3..9a998b7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { - "preserveConstEnums": true + "preserveConstEnums": true, + "sourceMap": true }, "include": ["src/**/*", "src/custom.d.ts"], "exclude": ["node_modules", "**/*.spec.ts"]