Skip to content

Commit 7e18d4c

Browse files
committed
feat(sourcemaps): use inline source maps and inline sources in node_tree
Closes #5617
1 parent 22e9590 commit 7e18d4c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tools/broccoli/trees/node_tree.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,14 @@ module.exports = function makeNodeTree(projects, destinationPath) {
4848
experimentalDecorators: true,
4949
declaration: true,
5050
stripInternal: true,
51-
mapRoot: '', /* force sourcemaps to use relative path */
5251
module: 'commonjs',
5352
moduleResolution: 'classic',
5453
noEmitOnError: true,
5554
rootDir: '.',
5655
rootFilePaths:
5756
['angular2/manual_typings/globals.d.ts', 'angular2/typings/es6-shim/es6-shim.d.ts'],
58-
sourceMap: true,
59-
sourceRoot: '.',
57+
inlineSourceMap: true,
58+
inlineSources: true,
6059
target: 'es5'
6160
});
6261

0 commit comments

Comments
 (0)