fix(compiler-cli): fix paths in source maps to be relative

The change looks bigger than it really is because I reordered the properties to match other tsconfigs we have.

The only real change is removal of sourceRoot property.

Fixes #13040
This commit is contained in:
Igor Minar 2016-11-22 13:59:36 -08:00 committed by vsavkin
parent 4cbf8ccf05
commit 2a3ca7bfcf
1 changed files with 9 additions and 9 deletions

View File

@ -1,11 +1,11 @@
{ {
"compilerOptions": { "compilerOptions": {
"module": "commonjs",
"target": "es5",
"lib": ["es6", "dom"],
"noImplicitAny": true,
"sourceMap": true,
"baseUrl": ".", "baseUrl": ".",
"declaration": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"module": "commonjs",
"outDir": "../../../dist/packages-dist/compiler-cli",
"paths": { "paths": {
"@angular/core": ["../../../dist/packages-dist/core"], "@angular/core": ["../../../dist/packages-dist/core"],
"@angular/common": ["../../../dist/packages-dist/common"], "@angular/common": ["../../../dist/packages-dist/common"],
@ -14,11 +14,11 @@
"@angular/platform-browser": ["../../../dist/packages-dist/platform-browser"], "@angular/platform-browser": ["../../../dist/packages-dist/platform-browser"],
"@angular/tsc-wrapped": ["../../../dist/tools/@angular/tsc-wrapped"] "@angular/tsc-wrapped": ["../../../dist/tools/@angular/tsc-wrapped"]
}, },
"experimentalDecorators": true,
"rootDir": ".", "rootDir": ".",
"sourceRoot": ".", "sourceMap": true,
"outDir": "../../../dist/packages-dist/compiler-cli", "inlineSources": true,
"declaration": true, "target": "es5",
"lib": ["es6", "dom"],
"skipLibCheck": true "skipLibCheck": true
}, },
"exclude": ["integrationtest"], "exclude": ["integrationtest"],