feat(sourcemaps): use inline source maps and inline sources in node_tree
Closes #5617
This commit is contained in:
parent
22e9590981
commit
7e18d4c539
|
@ -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'
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue