aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2019-03-17 22:18:56 +0800
committercrupest <crupest@outlook.com>2019-03-17 22:18:56 +0800
commite973ad02680f9d9ffdb9f7ac5aff9283484d2f46 (patch)
tree8371dc807c6e1456a4b13c51f72b6078b7244081
parentec9efc7edc3133459612e6e799e68a454e8148ba (diff)
downloadtimeline-e973ad02680f9d9ffdb9f7ac5aff9283484d2f46.tar.gz
timeline-e973ad02680f9d9ffdb9f7ac5aff9283484d2f46.tar.bz2
timeline-e973ad02680f9d9ffdb9f7ac5aff9283484d2f46.zip
Fix a wrong wildcard in ts config file.
-rw-r--r--Timeline/ClientApp/src/tsconfig.app.json2
-rw-r--r--Timeline/ClientApp/src/tsconfig.spec.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/Timeline/ClientApp/src/tsconfig.app.json b/Timeline/ClientApp/src/tsconfig.app.json
index ec3cc7f4..0d3b876e 100644
--- a/Timeline/ClientApp/src/tsconfig.app.json
+++ b/Timeline/ClientApp/src/tsconfig.app.json
@@ -7,7 +7,7 @@
},
"exclude": [
"src/test.ts",
- "test-utilities/**",
+ "test-utilities/**/*",
"**/*.spec.ts",
"**/*.mock.ts",
"**/*.test.ts"
diff --git a/Timeline/ClientApp/src/tsconfig.spec.json b/Timeline/ClientApp/src/tsconfig.spec.json
index ccf4b2ee..3bcc8926 100644
--- a/Timeline/ClientApp/src/tsconfig.spec.json
+++ b/Timeline/ClientApp/src/tsconfig.spec.json
@@ -13,7 +13,7 @@
"polyfills.ts"
],
"include": [
- "test-utilities/**",
+ "test-utilities/**/*",
"**/*.spec.ts",
"**/*.d.ts",
"**/*.mock.ts",