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, experimentalDecorators: true,
declaration: true, declaration: true,
stripInternal: true, stripInternal: true,
mapRoot: '', /* force sourcemaps to use relative path */
module: 'commonjs', module: 'commonjs',
moduleResolution: 'classic', moduleResolution: 'classic',
noEmitOnError: true, noEmitOnError: true,
rootDir: '.', rootDir: '.',
rootFilePaths: rootFilePaths:
['angular2/manual_typings/globals.d.ts', 'angular2/typings/es6-shim/es6-shim.d.ts'], ['angular2/manual_typings/globals.d.ts', 'angular2/typings/es6-shim/es6-shim.d.ts'],
sourceMap: true, inlineSourceMap: true,
sourceRoot: '.', inlineSources: true,
target: 'es5' target: 'es5'
}); });