From b060b81204283679a334d83354b3fd003b6dc207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Bjergmark?= Date: Sun, 25 Feb 2024 19:10:17 +0100 Subject: [PATCH] Fix debugging with VS Code due to missing Source Map (#3050) Fixes #2801 --- apps/api/project.json | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/api/project.json b/apps/api/project.json index a9181b1eb..e7603e023 100644 --- a/apps/api/project.json +++ b/apps/api/project.json @@ -13,6 +13,7 @@ "deleteOutputPath": false, "main": "apps/api/src/main.ts", "outputPath": "dist/apps/api", + "sourceMap": true, "target": "node", "tsConfig": "apps/api/tsconfig.app.json", "webpackConfig": "apps/api/webpack.config.js"