Skip to content

Commit

Permalink
fix(@angular/cli): Align tsconfig output dir to out-tsc. Add out-tsc …
Browse files Browse the repository at this point in the history
…to .gitignore

Added /out-tsc to the .gitignore blueprint. If someone runs tsc -p src/tsconfig.spec.json it outputs to the ../out-tsc folder. These should
be ignored.

Also changed
https://github.com/angular/angular-cli/blob/master/packages/%40angular/cli/blueprints/ng/files/e2e/tsconfig.e2e.json#L13 to ../out-tsc/e2e so that they all match.

cc @filipesilva

fixing due to issue with CLA from #5062

Close #5220
  • Loading branch information
johnpapa authored and filipesilva committed Mar 9, 2017
1 parent 7671bb4 commit e9372d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"lib": [
"es2016"
],<% } %>
"outDir": "../dist/out-tsc-e2e",
"outDir": "../out-tsc/e2e",
"module": "commonjs",
"target": "es5",
"types":[
Expand Down
1 change: 1 addition & 0 deletions packages/@angular/cli/blueprints/ng/files/gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# compiled output
/dist
/tmp
/out-tsc

# dependencies
/node_modules
Expand Down

0 comments on commit e9372d3

Please sign in to comment.