Skip to content

Commit

Permalink
fix(@angular/cli): don't set baseUrl in editor tsconfig
Browse files Browse the repository at this point in the history
Fix #5875
  • Loading branch information
filipesilva authored and hansl committed Jul 12, 2017
1 parent af37497 commit 9370c3d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"extends": "<%= relativeRootPath %>/tsconfig.json",
"compilerOptions": {
"outDir": "<%= relativeRootPath %>/out-tsc/app",
"baseUrl": "./",
"module": "es2015",
"baseUrl": "",
"types": []
},
"exclude": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"extends": "<%= relativeRootPath %>/tsconfig.json",
"compilerOptions": {
"outDir": "<%= relativeRootPath %>/out-tsc/spec",
"baseUrl": "./",
"module": "commonjs",
"target": "es5",
"baseUrl": "",
"types": [
"jasmine",
"node"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/e2e",
"baseUrl": "./",
"module": "commonjs",
"target": "es5",
"types": [
Expand Down
1 change: 0 additions & 1 deletion packages/@angular/cli/blueprints/ng/files/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"baseUrl": "src",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
Expand Down

0 comments on commit 9370c3d

Please sign in to comment.