diff options
author | crupest <crupest@outlook.com> | 2019-03-17 22:18:56 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-03-17 22:18:56 +0800 |
commit | e973ad02680f9d9ffdb9f7ac5aff9283484d2f46 (patch) | |
tree | 8371dc807c6e1456a4b13c51f72b6078b7244081 /Timeline/ClientApp | |
parent | ec9efc7edc3133459612e6e799e68a454e8148ba (diff) | |
download | timeline-e973ad02680f9d9ffdb9f7ac5aff9283484d2f46.tar.gz timeline-e973ad02680f9d9ffdb9f7ac5aff9283484d2f46.tar.bz2 timeline-e973ad02680f9d9ffdb9f7ac5aff9283484d2f46.zip |
Fix a wrong wildcard in ts config file.
Diffstat (limited to 'Timeline/ClientApp')
-rw-r--r-- | Timeline/ClientApp/src/tsconfig.app.json | 2 | ||||
-rw-r--r-- | Timeline/ClientApp/src/tsconfig.spec.json | 2 |
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", |