Skip to content
This repository was archived by the owner on Nov 4, 2021. It is now read-only.

Commit c2999b1

Browse files
authored
Update index.js
Fix includeContent to be true.
1 parent 6658443 commit c2999b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

browserify-typescript/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ module.exports = function(options) {
5555
.pipe(buffer())
5656
.pipe(debug ? sourcemaps.init({ loadMaps: true }) : noop())
5757
.pipe(options.minify ? uglify(options.uglifyOptions) : noop())
58-
.pipe(debug ? sourcemaps.write('./',{includeContent:false, sourceRoot:'../../../'}) : noop())
58+
.pipe(debug ? sourcemaps.write('./',{includeContent:true, sourceRoot:'../../../'}) : noop())
5959
.pipe(gulp.dest(options.outputPath));
6060
}
6161

0 commit comments

Comments
 (0)