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))); });