From e548fa27402b99b398c7e6c4fb9385d74362dc41 Mon Sep 17 00:00:00 2001 From: Graham Beckley Date: Thu, 25 Jan 2024 14:01:51 -0500 Subject: [PATCH] Migrate mocks to typescript as well --- __mocks__/{kinto-http.js => kinto-http.ts} | 0 tsconfig.json | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename __mocks__/{kinto-http.js => kinto-http.ts} (100%) diff --git a/__mocks__/kinto-http.js b/__mocks__/kinto-http.ts similarity index 100% rename from __mocks__/kinto-http.js rename to __mocks__/kinto-http.ts diff --git a/tsconfig.json b/tsconfig.json index e57f36c1c..77d430ab9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,6 +19,6 @@ "declaration": true, "allowJs": false, }, - "include": ["src", "test"], + "include": ["src", "test", "__mocks__"], "references": [{ "path": "./tsconfig.node.json" }] }