From ed7bc4d46eabc00ba38b0162db3d77be05a51760 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Aksel=20Helbo=20Bjergmark?= Date: Sun, 25 Feb 2024 14:36:35 +0100 Subject: [PATCH] Fix debugging with VS Code due to missing Source Map 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 fb59eb70f..2c6051f65 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"