Skip to content

Commit

Permalink
feat(sourcemaps): use inline source maps and inline sources in node_tree
Browse files Browse the repository at this point in the history
Closes #5617
  • Loading branch information
vsavkin committed Dec 4, 2015
1 parent 22e9590 commit 7e18d4c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tools/broccoli/trees/node_tree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,14 @@ module.exports = function makeNodeTree(projects, destinationPath) {
experimentalDecorators: true,
declaration: true,
stripInternal: true,
mapRoot: '', /* force sourcemaps to use relative path */
module: 'commonjs',
moduleResolution: 'classic',
noEmitOnError: true,
rootDir: '.',
rootFilePaths:
['angular2/manual_typings/globals.d.ts', 'angular2/typings/es6-shim/es6-shim.d.ts'],
sourceMap: true,
sourceRoot: '.',
inlineSourceMap: true,
inlineSources: true,
target: 'es5'
});

Expand Down

0 comments on commit 7e18d4c

Please sign in to comment.