Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit 09e1cd3

Browse files
TS compiler should ignore "bin" dir because, after VS publish, it might contain duplicates of the app's source files. Fixes #279.
1 parent 4effd63 commit 09e1cd3

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

templates/Angular2Spa/tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"skipDefaultLibCheck": true
99
},
1010
"exclude": [
11+
"bin",
1112
"node_modules"
1213
]
1314
}

templates/KnockoutSpa/tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"skipDefaultLibCheck": true
77
},
88
"exclude": [
9+
"bin",
910
"node_modules"
1011
]
1112
}

templates/ReactReduxSpa/tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"skipDefaultLibCheck": true
99
},
1010
"exclude": [
11+
"bin",
1112
"node_modules"
1213
]
1314
}

templates/ReactSpa/tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"skipDefaultLibCheck": true
88
},
99
"exclude": [
10+
"bin",
1011
"node_modules"
1112
]
1213
}

templates/WebApplicationBasic/tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"skipDefaultLibCheck": true
77
},
88
"exclude": [
9+
"bin",
910
"node_modules"
1011
]
1112
}

0 commit comments

Comments
 (0)