From 4f80c60be638c20bf64b78c84064cccfc926aecc Mon Sep 17 00:00:00 2001 From: Miguel Serrano Date: Mon, 28 Mar 2022 11:49:02 +0200 Subject: [PATCH] Added TS tests to typecheck (#7257) * Added TS tests to typecheck Co-authored-by: Alf Eaton GitOrigin-RevId: 59b9dd0f75ab4412eb0e46b3d5b7f7798d66f640 --- services/web/tsconfig.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/services/web/tsconfig.json b/services/web/tsconfig.json index 00ee0f3903..f7c5c3fb1c 100644 --- a/services/web/tsconfig.json +++ b/services/web/tsconfig.json @@ -12,5 +12,10 @@ "skipLibCheck": true /* Skip type checking of declaration files. */, "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ }, - "include": ["frontend/js/**/*.*", "modules/**/frontend/js/**/*.*"] + "include": [ + "frontend/js/**/*.*", + "modules/**/frontend/js/**/*.*", + "test/frontend/**/*.*", + "modules/**/test/frontend/**/*.*" + ] }