From ce23cd73456e6ed506f3424eea89d7a714107cec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Grand?= <francois.grand@inrae.fr> Date: Fri, 25 Mar 2022 11:56:58 +0100 Subject: [PATCH] fix: .d.ts file displayed by debugger instead of .ts source. refs #509 --- angular.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/angular.json b/angular.json index 0f22c724b..b106949db 100644 --- a/angular.json +++ b/angular.json @@ -104,7 +104,12 @@ "builder": "@angular-devkit/build-angular:dev-server", "options": { "browserTarget": "ngHyd:build", - "aot": true + "aot": true, + "sourceMap": { + "scripts": true, + "styles": true, + "vendor": true + } }, "configurations": { "production": { @@ -193,4 +198,4 @@ "cli": { "analytics": false } -} \ No newline at end of file +} -- GitLab