From 7be02ffc6cec8912b6f71d18d165a46a351c7698 Mon Sep 17 00:00:00 2001 From: Nathan Brizzee Date: Tue, 18 Apr 2023 14:35:44 -0700 Subject: [PATCH] feat: add sourceMap to tsconfig.json template --- packages/generators/src/app/templates/tsconfig.json.tpl.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/generators/src/app/templates/tsconfig.json.tpl.ts b/packages/generators/src/app/templates/tsconfig.json.tpl.ts index adc3432ae8..95316d2ef6 100644 --- a/packages/generators/src/app/templates/tsconfig.json.tpl.ts +++ b/packages/generators/src/app/templates/tsconfig.json.tpl.ts @@ -17,7 +17,8 @@ export const generate = (ctx: AppGeneratorContext) => rootDir: `./${lib}`, declaration: true, strict: true, - esModuleInterop: true + esModuleInterop: true, + sourceMap: true }, include: [lib], exclude: ['test']