feat(sourcemaps): use inline source maps and inline sources in node_tree

Closes #5617
This commit is contained in:
vsavkin 2015-12-04 13:24:24 -08:00 committed by Victor Savkin
parent 22e9590981
commit 7e18d4c539
1 changed files with 2 additions and 3 deletions

View File

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