Просмотр исходного кода

Added TS tests to typecheck (#7257)

* Added TS tests to typecheck

Co-authored-by: Alf Eaton <alf.eaton@overleaf.com>
GitOrigin-RevId: 59b9dd0f75ab4412eb0e46b3d5b7f7798d66f640
Miguel Serrano 4 лет назад
Родитель
Сommit
4f80c60be6
1 измененных файлов с 6 добавлено и 1 удалено
  1. 6 1
      services/web/tsconfig.json

+ 6 - 1
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/**/*.*"
+  ]
 }