diff options
author | crupest <crupest@outlook.com> | 2019-03-11 19:41:08 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-03-11 19:41:08 +0800 |
commit | b26342764046d188d223aa494c3bbbf76deb4927 (patch) | |
tree | 5b485ad438c9be9c180d425453588ff1c575a42d /Timeline | |
parent | 66e345c2ef3cdff410bf6f31d54f09ab4e6fe213 (diff) | |
download | timeline-b26342764046d188d223aa494c3bbbf76deb4927.tar.gz timeline-b26342764046d188d223aa494c3bbbf76deb4927.tar.bz2 timeline-b26342764046d188d223aa494c3bbbf76deb4927.zip |
Configure build config.
Specify mock and test files.
Diffstat (limited to 'Timeline')
-rw-r--r-- | Timeline/ClientApp/src/tsconfig.app.json | 4 | ||||
-rw-r--r-- | Timeline/ClientApp/src/tsconfig.spec.json | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Timeline/ClientApp/src/tsconfig.app.json b/Timeline/ClientApp/src/tsconfig.app.json index 722c370d..13151ca4 100644 --- a/Timeline/ClientApp/src/tsconfig.app.json +++ b/Timeline/ClientApp/src/tsconfig.app.json @@ -7,6 +7,8 @@ }, "exclude": [ "src/test.ts", - "**/*.spec.ts" + "**/*.spec.ts", + "**/*.mock.ts", + "**/*.test.ts" ] } diff --git a/Timeline/ClientApp/src/tsconfig.spec.json b/Timeline/ClientApp/src/tsconfig.spec.json index 8f7cedec..6e4460f8 100644 --- a/Timeline/ClientApp/src/tsconfig.spec.json +++ b/Timeline/ClientApp/src/tsconfig.spec.json @@ -14,6 +14,8 @@ ], "include": [ "**/*.spec.ts", - "**/*.d.ts" + "**/*.d.ts", + "**/*.mock.ts", + "**/*.test.ts" ] } |