From 30fe8d41c777dc3035e35c7e9b0a6fe94fd4f980 Mon Sep 17 00:00:00 2001 From: Christian Weyer Date: Wed, 5 Oct 2016 19:21:23 +0200 Subject: [PATCH] Changing source maps settings --- gulpTasks/web.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gulpTasks/web.js b/gulpTasks/web.js index 4980fde..cd64c08 100644 --- a/gulpTasks/web.js +++ b/gulpTasks/web.js @@ -122,9 +122,7 @@ return gulp.src(config.source.files.app.ts) .pipe(sourcemaps.init()) .pipe(ts(tsConfig)) - .pipe(sourcemaps.write('.', { - sourceRoot: '../src' - })) + .pipe(sourcemaps.write('.')) .pipe(gulp.dest(path.join(config.targets.buildFolder, config.targets.appFolder))); });