Skip to content

Commit e9372d3

Browse files
johnpapafilipesilva
authored andcommitted
fix(@angular/cli): Align tsconfig output dir to out-tsc. Add out-tsc 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
1 parent 7671bb4 commit e9372d3

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

packages/@angular/cli/blueprints/ng/files/e2e/tsconfig.e2e.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"lib": [
1111
"es2016"
1212
],<% } %>
13-
"outDir": "../dist/out-tsc-e2e",
13+
"outDir": "../out-tsc/e2e",
1414
"module": "commonjs",
1515
"target": "es5",
1616
"types":[

packages/@angular/cli/blueprints/ng/files/gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# compiled output
44
/dist
55
/tmp
6+
/out-tsc
67

78
# dependencies
89
/node_modules

0 commit comments

Comments
 (0)